https://github.com/genieframework/stipplemarkdown.jl
Render Markdown text in your Genie apps
https://github.com/genieframework/stipplemarkdown.jl
Last synced: 5 months ago
JSON representation
Render Markdown text in your Genie apps
- Host: GitHub
- URL: https://github.com/genieframework/stipplemarkdown.jl
- Owner: GenieFramework
- License: mit
- Created: 2024-06-26T15:18:16.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-31T16:08:05.000Z (over 1 year ago)
- Last Synced: 2025-09-19T05:27:14.218Z (10 months ago)
- Language: JavaScript
- Size: 18.6 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# StippleMarkdown
Render Markdown text in your Genie apps
This package provides two new Stipple components: `markdowntext` and `markdowncard`. As arguments, You can either pass a string of Markdown text or a symbol that refers to a variable containing Markdown text.
```julia
using GenieFramework
using StippleMarkdown
@app begin
@out txt = "**hello** world"
end
ui() = [ markdowntext(:txt), markdowntext("## Hello World!"), markdowncard(:txt), markdowncard("## Hello World!\n This is a Markdown card")]
@page("/", ui)
```