Age | Commit message (Collapse) | Author |
|
Makes more sense as a variable name.
|
|
untag_size, tag_size, etc. These represent the proper sizes and are
easier to mutate.
|
|
This adds the functionality for arbitrary levels of header depth which
will be translated to depth based header tags.
\## -> <h2>
\### -> <h3>
etc
This also introduces a variable 'size_of_content' which presents the
size of the raw string without the header tags as added size.
|
|
|
|
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.
|
|
|