aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-05-06~untag -> close_tagdx
Makes more sense as a variable name.
2020-05-06~express header algorithm in terms of new constantsdx
untag_size, tag_size, etc. These represent the proper sizes and are easier to mutate.
2020-05-06+header depth algorithmdx
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.
2020-05-06~changed title for first ifdx
2020-05-06+compile_line function, can turn '#' -> <h1>dx
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
2020-05-06+typedef to make char* into stringdx
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.
2020-05-06+support for bullet pointed listsdx
2020-05-06+C project via https://github.com/odavep/CTemplatedx
I'll try implementing my current system with it's current features into C
2020-05-06~md -> orgdx
2020-05-06+support for paragraphingdx
By checking at every line break whether paragraphing has been started, I can generate paragraphs quickly
2020-05-06+confirmation of markdown compilationdx
2020-05-06+apply template to content and write to output filedx
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.
2020-05-06+rule parser for markdown translationdx
Using re.sub, translate certain lines of markdown into html equivalents. Currently supports: '#', '**' and '*'.
2020-05-06+initial html file formatdx
Uses % symbols to delimit variables to substitute. Title and body are two fundamental files.
2020-05-05+read the initial html filedx
This html file has a specific format
2020-05-05squash! +option parsing capabilitydx
2020-05-05+argument validation for markdown file testdx
Usign regex to check if each file is a markdown file or not, skipping any that are
2020-05-05+option parsing capabilitydx
This allows for command line arguments. Currently have -i and -o: -i for initial template html -o for the output type (date or filename)
2020-05-05+simple gitignoredx
2020-05-05+converter.py filedx
This will be the main file for conversions to occur, though the project may grow out of this file.
2020-05-05Initial commitodavep