Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/AutoConnect/commit/d9395ae757977622b4626ae779a132bb790b836c?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
12 additions and
0 deletions
mkdocs/api.md
mkdocs/apiaux.md
@ -214,6 +214,9 @@ Join the AutoConnectAux object to AutoConnect. AutoConnectAux objects can be joi
bool load(const String& aux)
```
```cpp
bool load(PGM_P aux)
```
```cpp
bool load(const __FlashStringHelper* aux)
```
```cpp
@ -99,6 +99,9 @@ Returns whether embedded in the menu or not. The isMenu is a function that compl
bool load(const String& in)
```
```cpp
bool load(PGM_P in)
```
```cpp
bool load(const __FlashStringHelper* in)
```
```cpp
@ -130,6 +133,12 @@ bool loadElement(const String& in, const String& name = String(""))
bool loadElement(const String& in, std::vector< String > const& names)
```
```cpp
bool loadElement(PGM_P in, const String& name = String(""))
```
```cpp
bool loadElement(PGM_P in, std::vector< String > const& names)
```
```cpp
bool loadElement(const __FlashStringHelper* in, const String& name = String(""))
```
```cpp