pbe/syntax_to_css/Cargo.toml
Gered a3c2175671 add a "companion" project, syntax_to_css
to be used to turn sublime text themes to css files which can then
be included in a pbe site to apply appropriate styling to syntax
highlighted code blocks

i don't intend to support syntect's alternative inline css html
rendering functionality which would otherwise allow you to skip needing
a separate css file (at the cost of some html output that is a little
bit more bloated and less customizable from a web styling perspective)
2023-06-30 17:25:07 -04:00

10 lines
238 B
TOML

[package]
name = "syntax_to_css"
description = "Simple CLI utility to convert a Sublime Text theme to a CSS file, for use with rendering via syntect."
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.71"
syntect = "5.0.0"