Commit graph

487 commits

Author SHA1 Message Date
Xavier Mendez
f6700624da Create renderer_data and pass it to callbacks 2014-09-14 11:21:13 +02:00
Devin Torres
27e9e035fc Merge pull request #123 from fhahn/silence-implicit-delc-warning
Include strings.h to silence  warnings for strncasecmp
2014-09-13 18:28:46 -05:00
Florian Hahn
d0759dd208 Include strings.h to silence warnings for strncasecmp 2014-09-14 00:21:08 +02:00
Devin Torres
d20dd8ee04 Merge pull request #122 from uranusjr/unittest
New test framework based on Python’s unittest module
2014-09-13 00:11:30 -05:00
Devin Torres
b92c4545b0 Merge pull request #116 from jmendeth/lanli-import
Import improvements from Lanli (and more things)
2014-09-13 00:10:28 -05:00
Tzu-ping Chung
00a5b7abc2 Cleanup 2014-09-09 18:01:45 +08:00
Tzu-ping Chung
9a0c20d1ad Add "fail" flag for expected failure
Might be useful someday.
2014-09-09 17:57:58 +08:00
Tzu-ping Chung
855bc34742 Make test script Python 3-compatible 2014-09-09 17:48:42 +08:00
Tzu-ping Chung
9a2166db3c Cleanup 2014-09-09 17:26:47 +08:00
Tzu-ping Chung
6510aa4b76 Use difflib to make error friendly 2014-09-09 17:14:38 +08:00
Tzu-ping Chung
95ab7bb92f Enable escape character test 2014-09-09 17:14:16 +08:00
Xavier Mendez
8c14212dd9 Use memcmp in hoedown_buffer_eq(...) 2014-09-09 11:05:14 +02:00
Tzu-ping Chung
b49d385be3 Add math test (modified) and tweak runner 2014-09-09 16:30:01 +08:00
Tzu-ping Chung
8cc788ec59 New Python implemented test script 2014-09-09 16:10:50 +08:00
Xavier Mendez
30dd50f16a Keep code without warnings 2014-09-04 14:17:50 +02:00
Xavier Mendez
821b3495ce Keep up to date with master 2014-09-04 14:09:04 +02:00
Devin Torres
7e5ba30c23 Merge pull request #114 from jmendeth/mathjax-2
MathJax support, second attempt
2014-09-03 15:24:44 -05:00
Xavier Mendez
a715656fb7 Add __builtin_expect fallback for MSVC 2014-09-03 11:14:58 +02:00
Xavier Mendez
73d8a1120a More fixes 2014-09-03 10:39:33 +02:00
Xavier Mendez
a6b90a7cf7 Import improvements from Lanli (and more things) 2014-09-02 19:21:58 +02:00
Xavier Mendez
1868710ff4 Keep up to date with master
Conflicts:
	src/document.c
2014-09-02 00:54:00 +02:00
Xavier Mendez
3a1d4f0a21 Rename MATH_DOLLAR to MATH_EXPLICIT, update descriptions 2014-09-02 00:46:28 +02:00
Xavier Mendez
960179e51f document: Make MATH extension context-sensitive 2014-09-02 00:41:12 +02:00
Xavier Mendez
c6238419ff Merge pull request #110 from jmendeth/moar-bugfixes
Moar bugfixes
2014-08-26 16:45:58 +02:00
Xavier Mendez
0088492f5e html: Add *provisional* implementation for MATH 2014-08-18 12:04:03 +02:00
Xavier Mendez
c2ac3702a7 hoedown: Add new flags to CLI 2014-08-18 12:03:31 +02:00
Xavier Mendez
d3c7ec801b document: Implement MATH extension 2014-08-18 12:03:18 +02:00
Xavier Mendez
62908524c5 document: Simplify finding of HTML block end tag 2014-08-17 22:49:41 +02:00
Xavier Mendez
18df3a98ca document: Never omit the newline on sublists
See https://github.com/hoedown/hoedown/issues/102#issuecomment-52290938 for discussion.
2014-08-15 20:24:33 +02:00
Xavier Mendez
d59438f36c document: Optimize replace_spacing to pregrow output buffer 2014-08-14 23:36:51 +02:00
Xavier Mendez
83df167ea2 hoedown: Correct flag description 2014-08-14 23:31:40 +02:00
Xavier Mendez
514e80acb8 document: Make replace_spacing collapse newlines 2014-08-14 23:14:55 +02:00
Xavier Mendez
f81eac9e1e document: Better fix for #84
Made stricter: now it'll only reject the codefence if the delimiter
that was used to start it is found three consecutive times.
2014-08-14 22:04:57 +02:00
Xavier Mendez
c56d635afd document: Use find_emph_char for links (fixes #106)
As long as there's a valid matching ] at the end, and there's no
codespan inside the link, things should render exactly the same
as before. Please review this.
2014-08-14 20:55:16 +02:00
Xavier Mendez
7dce1ac18a document: Simplify char_link(...)
(This is to prepare for next commit)
2014-08-14 20:42:28 +02:00
Xavier Mendez
fbe1448b1f document: Allow images to be escaped (fixes #108) 2014-08-14 18:03:54 +02:00
Xavier Mendez
a87d39e0c8 document: Allow footnotes to be parsed when link == NULL (fixes #66) 2014-08-13 11:33:48 +02:00
Xavier Mendez
17a6992dba document: Move list typechecking logic to right location (fixes #102) 2014-08-13 11:30:22 +02:00
Xavier Mendez
646c8de9d2 document: Avoid parsing codespan as a fence (fixes #84) 2014-08-13 11:28:13 +02:00
Devin Torres
6590101008 Merge pull request #97 from uranusjr/fix_89-markup-escape
Fix markup characters escaping
2014-08-13 00:26:32 -05:00
Devin Torres
e2d34bba00 Merge pull request #96 from jmendeth/parse-inline
Add hoedown_document_render_inline
2014-08-13 00:15:22 -05:00
Tzu-ping Chung
efc8974c73 Use find_emph_char to find delims in char_quote 2014-08-13 10:38:11 +08:00
Tzu-ping Chung
492e3d14de find_emph_char should starts from the beginning
This fixes bugs for edge cases of pattern:

    opening  backtick  ending  [any]  backtick  [any]  ending

Examples: *`**`* and __`__`__

Range handling in 48a19b3 and e7bcbe3 is also changed to match the
correct behavior.
2014-08-11 03:38:27 +08:00
Tzu-ping Chung
e7bcbe3fa6 Use find_emph_char for table column parsing
Fix #77
2014-08-11 03:24:54 +08:00
Tzu-ping Chung
48a19b31bf Input of find_emph_char should INCLUDE opening
This fixes super^(`)`)
2014-08-11 03:06:25 +08:00
Tzu-ping Chung
60d63a1920 Make comments in char_emphasis up-to-date 2014-08-11 00:57:53 +08:00
Tzu-ping Chung
81d5932b67 Reusing find_emph_char logic in char_superscript 2014-08-11 00:53:42 +08:00
Tzu-ping Chung
79010cca84 Add comments 2014-08-11 00:52:06 +08:00
Tzu-ping Chung
0cd4dbd41c Need to handle backticks in find_emph_char 2014-08-11 00:30:35 +08:00
Tzu-ping Chung
e3cbd4be4e Make return statement of is_escaped more succinct 2014-08-10 23:11:51 +08:00