@@ -86,7 +86,7 @@ The following tabs show you how to use the data catalog given the interface you
8686
8787 Use `data_catalog["data"]` as an default argument to access the
8888 [`pytask.PickleNode`](../api/nodes_and_tasks.md#pytask.PickleNode) within the task. When
89- you are done transforming your \ [`pandas.DataFrame`\ ][], save it with
89+ you are done transforming your [`pandas.DataFrame`][], save it with
9090 [`pytask.PNode.save`](../api/nodes_and_tasks.md#pytask.PNode.save).
9191
9292 ```py hl_lines="11 22" title="task_data_preparation.py"
@@ -97,7 +97,7 @@ The following tabs show you how to use the data catalog given the interface you
9797
9898 Use `data_catalog["data"]` as an default argument to access the
9999 [`pytask.PickleNode`](../api/nodes_and_tasks.md#pytask.PickleNode) within the task. When
100- you are done transforming your \ [`pandas.DataFrame`\ ][], save it with
100+ you are done transforming your [`pandas.DataFrame`][], save it with
101101 [`pytask.PNode.save`](../api/nodes_and_tasks.md#pytask.PNode.save).
102102
103103 ```py hl_lines="7 17" title="task_data_preparation.py"
@@ -122,7 +122,8 @@ The following tabs show you how to use the data catalog given the interface you
122122
123123Next, we will define the second task that consumes the data set from the previous task.
124124Following one of the interfaces gives you immediate access to the
125- \[ ` pandas.DataFrame ` \] [ ] in the task without any additional line to load it.
125+ [ ` pandas.DataFrame ` ] [ ] in the task without any additional line to load
126+ it.
126127
127128``` py hl_lines="13" title="task_plot_data.py"
128129-- 8 < -- " docs_src/tutorials/using_a_data_catalog_3_py310.py"
@@ -170,12 +171,12 @@ path means the location is relative to the module of the data catalog.
170171```
171172
172173You can now use the data catalog as in the previous example and use the
173- \ [` pathlib.Path ` \ ][ ] in the task.
174+ [ ` pathlib.Path ` ] [ ] in the task.
174175
175176!!! note
176177
177178 Note that the value of `data_catalog["csv"]` inside the task becomes a
178- \ [`pathlib.Path`\ ][]. It is because a \ [`pathlib.Path`\ ][] in
179+ [`pathlib.Path`][]. It is because a [`pathlib.Path`][] in
179180 [`pytask.DataCatalog.add`](../api/core_classes_and_exceptions.md#pytask.DataCatalog.add)
180181 is not parsed to a [`pytask.PickleNode`](../api/nodes_and_tasks.md#pytask.PickleNode)
181182 but a [`pytask.PathNode`](../api/nodes_and_tasks.md#pytask.PathNode).
@@ -218,6 +219,6 @@ WindowsPath('C:\Users\pytask-dev\git\my_project\file.csv')
218219
219220` data_catalog["data"] ` was stored with a
220221[ ` pytask.PickleNode ` ] ( ../api/nodes_and_tasks.md#pytask.PickleNode ) and returns the
221- \ [` pandas.DataFrame ` \ ][ ] whereas ` data_catalog["csv"] ` becomes a
222+ [ ` pandas.DataFrame ` ] [ ] whereas ` data_catalog["csv"] ` becomes a
222223[ ` pytask.PathNode ` ] ( ../api/nodes_and_tasks.md#pytask.PathNode ) and
223224[ ` pytask.PNode.load ` ] ( ../api/nodes_and_tasks.md#pytask.PNode.load ) returns the path.
0 commit comments