rustyphoenixlecture 1.5.0

This project aims to provide a simple a powerfull lecture compilation to generate html web sites

[highlighting]
# Do we want line numbers
is_line_number = false
# Plain text identifier
token_charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_"
# Vector of accepted extensions
vec_extention = ["termcargo"]
# Vector of accepted filenames for highlithing this particular language
vec_filename = []
# Definition of a single line comment
single_line_comment = "#"
# Beginning of a multi-line comment
multi_line_comment_begin = ""
# Ending of a multi-line comment
multi_line_comment_end = ""
# If the language has an escape char
is_escape_char = false
# Some example of the language to be parsed
example = """
cargo build
   Compiling rusty_static_collection v0.1.0 (XXX/Examples/CollectionExamples/RustyStaticCollection)
    Finished dev [unoptimized + debuginfo] target(s) in 0.80s
"""

[[keyword]]
style = "cargoTermBuildKeyword"
vec_token = [
	"Created",
	"Finished",
	"Compiling",
	"Updating",
	"Downloaded",
	"Documenting",
	"Checking",
	"Generated",
	"Adding",
	"Running",
	"Doc-tests",
	"ok",
]
vec_match = [
	"             +",
]

[[keyword]]
style = "cargoTermNoteKeyword"
vec_token = [
	"note",
]
vec_match = []

[[keyword]]
style = "cargoTermWarningKeyword"
vec_token = [
	"warning",
]
vec_match = []

[[keyword]]
style = "cargoTermErrorKeyword"
vec_token = [
	"error:",
]
vec_match = [
	"             -",
]