Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove squareball for good | Rafael G. Martins | 2016-04-27 | 1 | -1/+1 |
| | |||||
* | content-parser: extract post description from content | Rafael G. Martins | 2016-04-20 | 1 | -9/+7 |
| | | | | | | | | | description is the first line of the first paragraph parsed from content file. users can override it declaring DESCRIPTION variable in source file itself. this also fixes a bug with line endings when using single line blockquotes. | ||||
* | content-parser: do not convert -- and --- to &ndash and &mdash inside code | Rafael G. Martins | 2016-04-17 | 1 | -1/+3 |
| | |||||
* | content-parser: fixed em/en-dash logic | Rafael G. Martins | 2016-03-05 | 1 | -2/+2 |
| | |||||
* | content-parser: fixed a bug in previous patch | Rafael G. Martins | 2016-03-05 | 1 | -0/+3 |
| | |||||
* | content-parser: convert -- and --- to &ndash and &mdash | Rafael G. Martins | 2016-03-05 | 1 | -0/+15 |
| | |||||
* | build: replace src/utils with squareball | Rafael G. Martins | 2016-02-26 | 1 | -138/+138 |
| | |||||
* | content-parser: fixed parser bug when handling links | Rafael G. Martins | 2016-02-21 | 1 | -2/+11 |
| | | | | | | do not handle something like this as a valid link: [asd] asd (asd) | ||||
* | content-parser: fixed bug that parsed text with '!' + link as image | Rafael G. Martins | 2016-02-13 | 1 | -4/+8 |
| | |||||
* | content-parser: removed goto jumps | Rafael G. Martins | 2016-01-31 | 1 | -18/+7 |
| | |||||
* | content-parser: use size_t instead of unsigned len when handling strings | Rafael G. Martins | 2016-01-22 | 1 | -2/+2 |
| | |||||
* | content-parser: encode html entities found in code blocks (fixes #3) | Rafael G. Martins | 2016-01-22 | 1 | -2/+38 |
| | |||||
* | fixed copyright | Rafael G. Martins | 2016-01-08 | 1 | -1/+1 |
| | |||||
* | Revert "build: removing src/utils and replacing with squareball" | Rafael G. Martins | 2015-12-23 | 1 | -126/+126 |
| | | | | This reverts commit 950e6c9148eca244a89d18a21d4ae4e5c3d1c646. | ||||
* | build: removing src/utils and replacing with squareball | Rafael G. Martins | 2015-12-23 | 1 | -126/+126 |
| | | | | | squareball is a new general purpose library for C99, based on the code removed from src/utils | ||||
* | content-parser: random parser fixes | Rafael G. Martins | 2015-11-04 | 1 | -0/+18 |
| | |||||
* | Revert "content-parser: added basic rst-like directives support" | Rafael G. Martins | 2015-11-04 | 1 | -227/+19 |
| | | | | This reverts commit 1faa52052624e7c03256df0c63c43f5d40ddb57a. | ||||
* | Revert "content-parser: fix memory leak in gcc" | Rafael G. Martins | 2015-11-04 | 1 | -1/+1 |
| | | | | This reverts commit 8c5ad9b304fd405380501f5acd1f7c809a1a2746. | ||||
* | Revert "content-parser: allow directive params with variable prefix" | Rafael G. Martins | 2015-11-04 | 1 | -28/+19 |
| | | | | This reverts commit d29c85ef1751cb46c579b3292f676605d9f86951. | ||||
* | Revert "content-parser: handle errors (that are handler as warnings) in ↵ | Rafael G. Martins | 2015-11-04 | 1 | -4/+1 |
| | | | | | | directives" This reverts commit 56736b7b39218c10efd64f305f7a35df9d4bc0af. | ||||
* | content-parser: handle errors (that are handler as warnings) in directives | Rafael G. Martins | 2015-11-04 | 1 | -1/+4 |
| | |||||
* | content-parser: allow directive params with variable prefix | Rafael G. Martins | 2015-11-03 | 1 | -19/+28 |
| | |||||
* | content-parser: fix memory leak in gcc | Rafael G. Martins | 2015-11-02 | 1 | -1/+1 |
| | |||||
* | content-parser: added basic rst-like directives support | Rafael G. Martins | 2015-11-02 | 1 | -19/+227 |
| | | | | | | | | | | | this patch adds support to something similar to reStructuredText directives [1]. the directive loader isn't implemented yet. also, the current implementation is stricter and differs a lot from the reStructuredText spec. documentation pending. this patch also fixes a few old parser bugs. [1] http://docutils.sourceforge.net/docs/ref/rst/directives.html | ||||
* | content-parser: fix comment | Rafael G. Martins | 2015-10-22 | 1 | -1/+1 |
| | |||||
* | content-parser: replace useless array with boolean | Rafael G. Martins | 2015-10-22 | 1 | -6/+5 |
| | |||||
* | content-parser: handle \r\n line endings properly | Rafael G. Martins | 2015-10-22 | 1 | -31/+79 |
| | |||||
* | content-parser: added id attributes to headers | Rafael G. Martins | 2015-10-12 | 1 | -2/+30 |
| | | | | the id is a slugified version of the (unparsed) header content. | ||||
* | content-parser: removed some uneeded code | Rafael G. Martins | 2015-09-15 | 1 | -14/+0 |
| | |||||
* | content-parser: implemented multiline support for lists | Rafael G. Martins | 2015-08-13 | 1 | -44/+126 |
| | |||||
* | content-parser: fixed start_state bug. | Rafael G. Martins | 2015-07-09 | 1 | -2/+2 |
| | |||||
* | content-parser: fixed bug when using inline delim in link title | Rafael G. Martins | 2015-07-04 | 1 | -7/+7 |
| | |||||
* | content-parser: implemented excerpt, and now for good! | Rafael G. Martins | 2015-06-13 | 1 | -2/+39 |
| | |||||
* | content-parser: added "automatic" links | Rafael G. Martins | 2015-06-10 | 1 | -15/+29 |
| | |||||
* | content-parser: fixed inline parser | Rafael G. Martins | 2015-05-29 | 1 | -31/+61 |
| | |||||
* | content-parser: random fixes and more tests for inline content parser | Rafael G. Martins | 2015-05-27 | 1 | -2/+7 |
| | |||||
* | content-parser: random fixes, more tests | Rafael G. Martins | 2015-05-27 | 1 | -13/+26 |
| | |||||
* | fixed copyright | Rafael G. Martins | 2015-05-25 | 1 | -1/+1 |
| | |||||
* | content-parser: fix and test horizontal rules | Rafael G. Martins | 2015-05-18 | 1 | -1/+4 |
| | |||||
* | content-parser: implemented line breaks | Rafael G. Martins | 2015-05-12 | 1 | -4/+23 |
| | |||||
* | fixed a few issues reported by clang's static analyzer | Rafael G. Martins | 2015-05-10 | 1 | -1/+1 |
| | |||||
* | content-parser: more random stuff | Rafael G. Martins | 2015-05-07 | 1 | -106/+73 |
| | |||||
* | content-parser: lots of random stuff | Rafael G. Martins | 2015-05-07 | 1 | -93/+104 |
| | |||||
* | content-parser: do not parse content inside code | Rafael G. Martins | 2015-05-06 | 1 | -7/+30 |
| | |||||
* | content-parser: actually use inline parser | Rafael G. Martins | 2015-05-06 | 1 | -3/+19 |
| | |||||
* | content-parsed: started inline parser | Rafael G. Martins | 2015-05-06 | 1 | -3/+217 |
| | |||||
* | content-parser: minor fixes. added tests | Rafael G. Martins | 2015-05-04 | 1 | -14/+21 |
| | |||||
* | content-parser: implemented more block elements | Rafael G. Martins | 2015-05-04 | 1 | -8/+181 |
| | |||||
* | content-parser: added todo | Rafael G. Martins | 2015-05-04 | 1 | -1/+3 |
| | |||||
* | started implementint a markdown-like syntax for content | Rafael G. Martins | 2015-05-04 | 1 | -0/+296 |