Age | Commit message (Collapse) | Author |
|
|
|
compile_line is the main function which compiles a single line in C.
Similar to the stage of compilation in the python program.
Currently supports header tags
|
|
Looks nice in my editor and is nice to use when writing code. Will be
removed via some simple grepping later if I'm asked lol.
|
|
|
|
I'll try implementing my current system with it's current features into C
|
|
|
|
By checking at every line break whether paragraphing has been started, I
can generate paragraphs quickly
|
|
|
|
This firstly formats the template with certain conditional
variables (title and body) and then generates a html file based on the
option chosen. The time one was a bit annoying as it required using ctime.
|
|
Using re.sub, translate certain lines of markdown into html equivalents.
Currently supports: '#', '**' and '*'.
|
|
Uses % symbols to delimit variables to substitute. Title and body are
two fundamental files.
|
|
This html file has a specific format
|
|
|
|
Usign regex to check if each file is a markdown file or not, skipping
any that are
|
|
This allows for command line arguments. Currently have -i and -o:
-i for initial template html
-o for the output type (date or filename)
|
|
|
|
This will be the main file for conversions to occur, though the project
may grow out of this file.
|
|
|