diff --git a/docs/source/index.md b/docs/source/index.md index f8bf33f..781a2ec 100644 --- a/docs/source/index.md +++ b/docs/source/index.md @@ -81,9 +81,8 @@ typst`compile input.typ output.pdf` - Default `auto::Mode`? - Automatically determine the Typst syntactic context - Use a tree-sitter grammar or jll package -- Documenter.jl - - Backend - - Docstrings +- Documenter.jl backend and docstrings + - Requires Typst to [output HTML](https://github.com/typst/typst/issues/114) - Implement Typst formatting for more types - `Base` - `AbstractDict` diff --git a/src/commands.jl b/src/commands.jl index d1055c6..53ad17a 100644 --- a/src/commands.jl +++ b/src/commands.jl @@ -319,11 +319,6 @@ See also [`TypstCommand`](@ref). !!! info If the Typst compiler throws an error, it will be printed to `stderr`. Then, a Julia [`TypstError`](@ref) will be thrown unless the [`ignorestatus`](@ref) flag is set. - -# Examples -```jldoctest -julia> run(typst`compile input.typ output.pdf`); -``` """ function run(tc::TypstCommand, args...; kwargs...) process = run(ignorestatus(Cmd(`$(tc.compiler) $(tc.parameters)`)), args...; kwargs...)