This website works better with JavaScript.
Explore
Help
Sign In
Trivernis
/
snekdown
mirror of
https://github.com/Trivernis/snekdown.git
Watch
1
Star
0
Fork
You've already forked snekdown
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
b9cf095cfa
version-2
main
develop
actions
feature/epub-rendering
v0.27.0
v0.30.1
v0.30.2
v0.30.3
v0.30.4
v0.30.5
v0.31.0
v0.31.1
v0.32.0
v0.32.1
v0.32.2
v0.33.0
v0.33.1
v0.33.2
v0.33.3
v0.33.4
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from 'b9cf095cfa'
${ noResults }
snekdown
/
src
/
utils
/
mod.rs
6 lines
95 B
Rust
Raw
Normal View
History
Unescape
Escape
Change input syntax and add cache storage handler - input syntax changed to <subcommand> <options...> - Added clear-cache subcommand - CacheStorage now handles the caching of files Signed-off-by: trivernis <trivernis@protonmail.com>
4 years ago
pub
mod
caching
;
Change downloading of images to be parallel Signed-off-by: trivernis <trivernis@protonmail.com>
4 years ago
pub
mod
downloads
;
Add conversion of images when configured Signed-off-by: trivernis <trivernis@protonmail.com>
4 years ago
pub
mod
image_converting
;
Add glossary implementation Glossary entries can be defined with `~KEY` for the short form and `~~KEY` for the long form. If a glossary entry is referenced for the first time it will always be rendered as the long form. Glossary entries can be defined in a toml file (default is glossary.toml) similar to bibliography. Signed-off-by: trivernis <trivernis@protonmail.com>
4 years ago
pub
mod
macros
;
Refactor project folder and file structure - add folders for references and utils as well as elements - extract the line and inline parsing of the parser into separate traits
4 years ago
pub
mod
parsing
;