rustyphoenixlecture 1.10.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 = ["termmake"]
# 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 = """
make
[ 33%] Building CXX object CMakeFiles/hadamard_product.dir/timer.cpp.o
[ 66%] Building CXX object CMakeFiles/hadamard_product.dir/main.cpp.o
[100%] Linking CXX executable hadamard_product
[100%] Built target hadamard_product
"""

[[getuntil]]
style = "makeTerminalScaningDependencies"
start_token = "Scanning dependencies of target"
end_token = "\n"


[[getuntil]]
style = "makeTerminalScaningDependencies"
start_token = "Consolidate"
end_token = "\n"


[[getuntil]]
style = "makeTerminalBuildingObject"
start_token = "Building"
end_token = "\n"


[[getuntil]]
style = "makeTerminalLinking"
start_token = "Linking"
end_token = "\n"


[[getuntil]]
style = "makeTerminalInstallProject"
start_token = "Install the project"
end_token = "\n"


[[getuntil]]
style = "makeTerminalCallCommand"
start_token = "Call"
end_token = "\n"


[[getuntil]]
style = "makeTerminalCallCommand"
start_token = "Run"
end_token = "\n"