1. 9e15436 Added cmark_render_code_point. by John MacFarlane · 9 years ago
  2. 364c683 latex renderer - simplified using cmark_render_ascii. by John MacFarlane · 9 years ago
  3. 36afea5 man renderer: Use ASCII not LIT in outc. by John MacFarlane · 9 years ago
  4. b1946e9 cmark.3 - fixed botched escaping. by John MacFarlane · 9 years ago
  5. 511cb4a man renderer: Fixed character escaping, use new cmark_render_ascii. by John MacFarlane · 9 years ago
  6. 49e015c render: added cmark_render_ascii, to be used in char escapers. by John MacFarlane · 9 years ago
  7. 3494245 Limit generated man page to 72 character line width. by John MacFarlane · 9 years ago
  8. 46ac1e6 Added width parameter to render_man. by John MacFarlane · 9 years ago
  9. 9219938 Removed options field from renderer struct. by John MacFarlane · 9 years ago
  10. ff2c9dc Removed enumlevel field of renderer. by John MacFarlane · 9 years ago
  11. b2306ee latex: Removed need to access render->in_tight_list_item. by John MacFarlane · 9 years ago
  12. 6ecd359 cmark_render: ensure final newline. by John MacFarlane · 9 years ago
  13. d64b1d2 commonmark renderer - don't need to manually adjust need_cr. by John MacFarlane · 9 years ago
  14. 641182e Fixed some windows warnings. by John MacFarlane · 9 years ago
  15. 4633086 Restructured common renderer code. by John MacFarlane · 9 years ago
  16. c6460e0 Rename cmark_render_state -> cmark_renderer. by John MacFarlane · 9 years ago
  17. f1a1393 render: Simplified code, avoiding some allocations. by John MacFarlane · 9 years ago
  18. 476f083 Factored out common bits of rendering into separate render module. by John MacFarlane · 9 years ago
  19. 4e3b2cf Allow non-initial hyphens in html tag names. by John MacFarlane · 9 years ago
  20. 6ba6d33 Updated spec. by John MacFarlane · 9 years ago
  21. 21d0d2d Removed debug.h. by John MacFarlane · 9 years ago
  22. db89235 Removed dependence on debug.h. by John MacFarlane · 9 years ago
  23. 2bb5169 Updated spec by John MacFarlane · 9 years ago
  24. 0978e3e Updated spec.txt. by John MacFarlane · 9 years ago
  25. c210285 Updated spec.txt. by John MacFarlane · 9 years ago
  26. 17e6720 Updates for new HTML block spec. by John MacFarlane · 9 years ago
  27. 0390980 Implemented new treatment of dashes with `--smart`. by John MacFarlane · 9 years ago
  28. 46a9810 Updated test/smart_punct.txt. by John MacFarlane · 9 years ago
  29. 0ac1d6a Fixed small bug in test runner. by John MacFarlane · 9 years ago
  30. e6acb7e spec_tests.py: use stdout.out.buffer.write instead of print throughout. by John MacFarlane · 9 years ago
  31. 7bd74a6 Updated spec_tests.py from jgm/CommonMark. by John MacFarlane · 9 years ago
  32. 8011e3a Fixed compiler warnings. by John MacFarlane · 9 years ago
  33. 6aebde8 Use sprintf rather than snprintf because we know it won't overflow. by John MacFarlane · 9 years ago
  34. 09e312a Another try at getting snprintf part to compile on Windows. by John MacFarlane · 9 years ago
  35. 44ed9b5 Fixed typo in Windows fix. by John MacFarlane · 9 years ago
  36. 2f17435 LaTeX writer: fixed some compile errors on MSVC. by John MacFarlane · 9 years ago
  37. 05177ec LaTeX writer: Fixed straight single, double quote. by John MacFarlane · 9 years ago
  38. 497c4cc LaTeX renderer: \textbf for strong. by John MacFarlane · 9 years ago
  39. bbfab9f astyle formatting improvements. by John MacFarlane · 9 years ago
  40. afc1b89 Added LaTeX renderer. by John MacFarlane · 9 years ago
  41. 46e9ed6 commonmark writer: correctly handle email autolinks. by John MacFarlane · 9 years ago
  42. 6199918 Use utf-8 aware re2c. by John MacFarlane · 9 years ago
  43. 4e6e6b1 `spec_test.py`: changed default to `spec.txt` (not `test/spec.txt`). by John MacFarlane · 9 years ago
  44. 496cfe0 html renderer: properly split info on first space char. by John MacFarlane · 9 years ago
  45. bae7b61 Merge pull request #61 from txdv/version-functions-ffi by John MacFarlane · 9 years ago
  46. 06b355f Changed version variables to functions. by Andrius Bentkus · 9 years ago
  47. 2f94507 Added algorithm.md, informal explanation of emph/link parsing. by John MacFarlane · 9 years ago
  48. 04f9b7d process_emphasis: Fixed setting lower bound to potential openers. by John MacFarlane · 9 years ago
  49. 0d8609c Rename potential_openers -> openers_bottom. by John MacFarlane · 9 years ago
  50. 0a6a518 Rename start_delim -> stack_bottom. by John MacFarlane · 9 years ago
  51. 4282352 Minor astyle reformatting. by John MacFarlane · 9 years ago
  52. 54cf0c7 Added case for #59 to pathological_test.py. by John MacFarlane · 9 years ago
  53. 4459a62 Fixed emphasis/link parsing bug. by John MacFarlane · 9 years ago
  54. a804ce0 Fixed off-by-one error in line splitting routine. by John MacFarlane · 9 years ago
  55. 67ad9d1 Added assertion to peek_char to catch any stray NULLs. by John MacFarlane · 9 years ago
  56. cc2effd README: added 'make afl' instructions. by John MacFarlane · 9 years ago
  57. 1632a5a Small changes to README and benchmark files. by John MacFarlane · 9 years ago
  58. 2fa5442 Renamed entities.h -> entities.inc. by John MacFarlane · 9 years ago
  59. 027a315 Updated benchmarks. by John MacFarlane · 9 years ago
  60. 04726a7 Added `CMARK_OPT_VALIDATE_UTF8` option. by John MacFarlane · 9 years ago
  61. fb7af2f Small code simplification in inlines.c. by John MacFarlane · 9 years ago
  62. ea343e8 is_blank: recognize tab as a blank character. by John MacFarlane · 9 years ago
  63. baf5d11 skip_spaces: skip tabs too. by John MacFarlane · 9 years ago
  64. 7bedf7d Don't rtrim in subject_from_buffer. by John MacFarlane · 9 years ago
  65. 3a75c99 Removed utf8 validation tests. by John MacFarlane · 9 years ago
  66. 33d0a4b Removed utf8 validation. by John MacFarlane · 9 years ago
  67. f0a6852 Updated spec for new tab behavior. by John MacFarlane · 9 years ago
  68. 2653712 Renamed utf8proc_detab as utf8proc_check, removed detabbing function. by John MacFarlane · 9 years ago
  69. 7f491b0 Preliminary changes for new tab handling. by John MacFarlane · 9 years ago
  70. ef77d90 spec_tests.py: allow → for tab in HTML examples. by John MacFarlane · 9 years ago
  71. 50d3b87 normalize.py: don't collapse whitespace in pre contexts. by John MacFarlane · 9 years ago
  72. 7e7819e Simpler approach for entity lookup. by John MacFarlane · 9 years ago
  73. 54c087d make_entities_h.py: confirm there are no hash collisions. by John MacFarlane · 9 years ago
  74. 8418191 Revert "Rebuild src/entities.h when the generating python program changes." by John MacFarlane · 9 years ago
  75. e113185 Rebuild src/entities.h when the generating python program changes. by John MacFarlane · 9 years ago
  76. 76ed9a6 Mark entity data structures as const. by John MacFarlane · 9 years ago
  77. 9f1bb45 entities: Make the first entity in the array (TripleDot) work. by John MacFarlane · 9 years ago
  78. 9ae4975 astyle formatting changes. by John MacFarlane · 9 years ago
  79. 0c439ac Added explanatory note about entities.h in Makefile. by John MacFarlane · 9 years ago
  80. 208c794 Replace gperf-based entity lookup with binary tree lookup. by John MacFarlane · 9 years ago
  81. f904f70 Fixed cases like by John MacFarlane · 9 years ago
  82. d55f113 inlines.c: Added utility functions to skip spaces and line endings. by John MacFarlane · 9 years ago
  83. fbeb28c Updated spec.txt. by John MacFarlane · 9 years ago
  84. e251fe5 Fixed backslashes in link destinations that are not part of escapes. by John MacFarlane · 9 years ago
  85. 645ea4e Updated spec.txt. by John MacFarlane · 9 years ago
  86. 68ab4cc Updated spec.txt. by John MacFarlane · 9 years ago
  87. cdcb65c Fixed entity lookup table. by John MacFarlane · 9 years ago
  88. 0f7233e Removed "add newline if line doesn't have one." by John MacFarlane · 9 years ago
  89. ab5666e pathological_tests: removed timeout stuff. by John MacFarlane · 9 years ago
  90. c5b77c7 Small logic fixes and a simplification in process_emphasis. by John MacFarlane · 9 years ago
  91. 18c32c7 Updated benchmarks.md. by John MacFarlane · 9 years ago
  92. 39b4015 Fixed `process_emphasis` to handle new pathological cases. by John MacFarlane · 9 years ago
  93. 4224dc1 Added another case to pathological tests. by John MacFarlane · 9 years ago
  94. eba54eb Added timetouts to pathological tests. by John MacFarlane · 9 years ago
  95. 1bdb53d More code simplification. by John MacFarlane · 9 years ago
  96. aa2f771 Code simplification. by John MacFarlane · 9 years ago
  97. 1acd161 Added more pathological tests. by John MacFarlane · 9 years ago
  98. 4765fff Added pathological test case for jgm/commonmark#43. by John MacFarlane · 9 years ago
  99. e1db44b process_inlines: remove closers from delim stack when possible. by John MacFarlane · 9 years ago
  100. a79b2ed Revert "Merge pull request #58 from nwellnhof/optimize_utf8proc_detab" by John MacFarlane · 9 years ago