Skip to content
Merged
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
1 change: 1 addition & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ For more information on the grammar, see the extended help of the

```@docs
StyledStrings.@styled_str
StyledStrings.styled
StyledStrings.Face
StyledStrings.addface!
StyledStrings.SimpleColor
Expand Down
4 changes: 3 additions & 1 deletion src/StyledStrings.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ public Face, addface!, SimpleColor
include("faces.jl")
include("regioniterator.jl")
include("io.jl")
include("stylemacro.jl")
include("styledmarkup.jl")
include("legacy.jl")

using .StyledMarkup

function __init__()
userfaces = joinpath(first(DEPOT_PATH), "config", "faces.toml")
isfile(userfaces) && loaduserfaces!(userfaces)
Expand Down
Loading