Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function single_example_file(filename::String)
joinpath(THIS_DIR, "..", "examples", filename),
"r"
)
all_lines = split(fulltext, "\n")
all_lines = strip.(split(fulltext, "\n"), '\r')
l = 1
regex = r"^function ([^_].+?)\("
regex_end = r"^end$"
Expand Down Expand Up @@ -131,6 +131,7 @@ makedocs(
"Heatmaps" => "examples/heatmaps.md",
"Histograms" => "examples/histograms.md",
"Line and Scatter" => "examples/line_scatter.md",
"Line and Scatter" => "examples/line_scatter2.md",
"Maps" => "examples/maps.md",
"Shapes" => "examples/shapes.md",
"Subplots" => "examples/subplots.md",
Expand All @@ -139,6 +140,8 @@ makedocs(
"Time Series" => "examples/time_series.md",
"Violin" => "examples/violin.md",
],
"Extra Examples" => [
"Tables" => "extra-examples/table.md"],
"API Docs" => "api.md"
]
)
Expand Down
2 changes: 1 addition & 1 deletion docs/src/building_traces_layouts.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ of the plot, whether the grid lines are drawn and the position of the legend.
[layout reference documentation](https://plotly.com/julia/reference/layout/).


## The `attr` function
## [The `attr` function](@id attr)

There is a special function named `attr` that allows you to apply the same
keyword magic we saw in the trace and layout functions with underscores,
Expand Down
Loading