Browse Source

Fix crosd refs

jrobinAV 8 months ago
parent
commit
b4722b9191
3 changed files with 8 additions and 6 deletions
  1. 3 1
      taipy/config/__init__.py
  2. 4 4
      taipy/config/config.py
  3. 1 1
      taipy/config/exceptions/__init__.py

+ 3 - 1
taipy/config/__init__.py

@@ -9,7 +9,9 @@
 # an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
 # specific language governing permissions and limitations under the License.
 
-"""# Taipy Config package
+"""---
+title: Taipy Config package
+---
 
 The `taipy.config` package provides features to configure a Taipy application.
 

+ 4 - 4
taipy/config/config.py

@@ -39,10 +39,10 @@ class Config:
 
         Here is a non-exhaustive list of configuration method examples:
 
-        - `configure_data_node()^`: Configure a data node adding and returning a `DataNodeConfig^`.
-        - `configure_task()^`: Configure a task adding and returning a `TaskConfig^`.
-        - `configure_scenario()^`: Configure a scenario adding and returning a `ScenarioConfig^`.
-        - `load()^`: Load a TOML configuration file. (This overrides the Python configuration)
+        - `configure_data_node()`: Configure a data node adding and returning a `DataNodeConfig^`.
+        - `configure_task()`: Configure a task adding and returning a `TaskConfig^`.
+        - `configure_scenario()`: Configure a scenario adding and returning a `ScenarioConfig^`.
+        - `load()`: Load a TOML configuration file. (This overrides the Python configuration)
         - more...
 
         !!! example "Most frequently used configuration methods"

+ 1 - 1
taipy/config/exceptions/__init__.py

@@ -9,5 +9,5 @@
 # an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
 # specific language governing permissions and limitations under the License.
 
-"""# Exceptions raised by the `taipy.config^` package."""
+"""# Exceptions raised by the `taipy.config` package."""
 from .exceptions import *