diff options
author | metamuffin <metamuffin@disroot.org> | 2022-08-30 16:54:57 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-08-30 16:54:57 +0200 |
commit | 802efbca25cb92d8567761361b6513fd57e05578 (patch) | |
tree | 62eb0139143cc343d83d92091eee8efaf0888001 /code/src/main.rs | |
parent | ed6186a764701e702032156c9632ac19305652be (diff) | |
download | metamuffin-blog-802efbca25cb92d8567761361b6513fd57e05578.tar metamuffin-blog-802efbca25cb92d8567761361b6513fd57e05578.tar.bz2 metamuffin-blog-802efbca25cb92d8567761361b6513fd57e05578.tar.zst |
basic syntax highlighting
Diffstat (limited to 'code/src/main.rs')
-rw-r--r-- | code/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/code/src/main.rs b/code/src/main.rs index 0bd0169..c20d137 100644 --- a/code/src/main.rs +++ b/code/src/main.rs @@ -1,6 +1,7 @@ pub mod atom; pub mod html; pub mod markdown; +pub mod syntax_highlight; use atom::generate_atom; use clap::{Parser, Subcommand}; |