Skip to content

Commit

Permalink
update docs index.md
Browse files Browse the repository at this point in the history
  • Loading branch information
klwlevy committed Feb 26, 2024
1 parent e7d428d commit f7653b8
Showing 1 changed file with 26 additions and 4 deletions.
30 changes: 26 additions & 4 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,33 @@ CurrentModule = TableSkill

# TableSkill

Documentation for [TableSkill](https://github.com/klwlevy/TableSkill.jl).

```@index
```
Documentation for [TableSkill.jl](https://github.com/klwlevy/TableSkill.jl).

```@autodocs
Modules = [TableSkill]
```

```@raw html
<details closed><summary>Example:</summary>
```

```@example detail_example
using TableSkill, DataFrames
my_df1 = DataFrame(x = 42, y = 1:10, z = "hello")
my_df2 = DataFrame(x = 42, y = 1:10, z = "world")
tableskill(
dataframe_dict = Dict(
"1 my_df1" => my_df1,
"2 my_df2" => my_df2,
),
sub_folder_in_export = "my_folder",
)
nothing #hide
```

```@raw html
</details>
```

0 comments on commit f7653b8

Please sign in to comment.