Skip to content

Commit

Permalink
docs++
Browse files Browse the repository at this point in the history
  • Loading branch information
asinghvi17 committed Jun 6, 2024
1 parent fe96395 commit 856a85b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/src/formats.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ using MakieTeX, CairoMakie
# Any of the below things could be used in place of the other.
# However, `scatter` will not accept LaTeXStrings as markers.
latex_string = L"\int_0^\pi \sin(x)^2 dx"
tex_document = TeXDocument(latex_string)
cached_tex = CachedTeX(tex_document)
tex_document = TEXDocument(latex_string)
cached_tex = CachedTEX(tex_document)
fig = Figure()
# use the teximg recipe
Expand Down Expand Up @@ -46,7 +46,7 @@ doc = raw"""
\end{document}
"""
tex_document = TeXDocument(doc)
tex_document = TEXDocument(doc)
fig = Figure()
# use the teximg recipe
Expand Down
3 changes: 0 additions & 3 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ hero:
name: "MakieTeX"
text: ""
tagline: Plotting vector images in Makie
image:
src: /logo.png
alt: MakieTeX logo
actions:
- theme: brand
text: Introduction
Expand Down

2 comments on commit 856a85b

@asinghvi17
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/108357

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.0 -m "<description of version>" 856a85be27b1b778b367c3605fadb8521e8d0827
git push origin v0.4.0

Please sign in to comment.