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)
10 lines
238 B
TOML
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"
|