Skip to content

Commit

Permalink
set env variable in doc example
Browse files Browse the repository at this point in the history
  • Loading branch information
klwlevy committed Feb 26, 2024
1 parent cff6d6b commit 0b68e80
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@ 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",
)
withenv("JULIA_USER_SURNAME"=>"levy") do
tableskill(
dataframe_dict = Dict(
"1 my_df1" => my_df1,
"2 my_df2" => my_df2,
),
sub_folder_in_export = "my_folder",
)
end
nothing #hide
```
Expand Down

0 comments on commit 0b68e80

Please sign in to comment.