<feed xmlns='http://www.w3.org/2005/Atom'>
<title>cmark/src/inlines.h, branch master</title>
<subtitle>My own fork of cmark for commonmark conversion</subtitle>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/'/>
<entry>
<title>Use C string instead of chunk for link URL and title</title>
<updated>2020-01-23T16:25:54+00:00</updated>
<author>
<name>Nick Wellnhofer</name>
<email>wellnhofer@aevum.de</email>
</author>
<published>2020-01-18T22:12:37+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=b237924585e61532ada774bf9e70eadff00666dc'/>
<id>b237924585e61532ada774bf9e70eadff00666dc</id>
<content type='text'>
Use zero-terminated C strings instead of cmark_chunks without storing
the length. This introduces a few additional strlen computations,
but overhead should be low.

Allows to reduce size of struct cmark_node later.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use zero-terminated C strings instead of cmark_chunks without storing
the length. This introduces a few additional strlen computations,
but overhead should be low.

Allows to reduce size of struct cmark_node later.
</pre>
</div>
</content>
</entry>
<entry>
<title>blocks: Fix quadratic behavior in `finalize`</title>
<updated>2017-09-14T01:57:43+00:00</updated>
<author>
<name>Vicent Marti</name>
<email>tanoku@gmail.com</email>
</author>
<published>2017-09-07T15:06:11+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=6c9b4d75cb9e98a7f225e9873045326dffd8b6c6'/>
<id>6c9b4d75cb9e98a7f225e9873045326dffd8b6c6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "More sourcepos! (#169)"</title>
<updated>2017-01-04T06:10:33+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2017-01-04T06:10:33+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=fb6356e3aa7696183f6cbcb99e521ab74260124a'/>
<id>fb6356e3aa7696183f6cbcb99e521ab74260124a</id>
<content type='text'>
This reverts commit 9e643720ec903f3b448bd2589a0c02c2514805ae.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 9e643720ec903f3b448bd2589a0c02c2514805ae.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Change types for source map offsets (#174)"</title>
<updated>2017-01-04T06:08:38+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2017-01-04T06:08:38+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=60b6962db0b0488667180e11cc6cfb1cec1b41ea'/>
<id>60b6962db0b0488667180e11cc6cfb1cec1b41ea</id>
<content type='text'>
This reverts commit 4fbe344df43ed7f60a3d3a53981088334cb709fc.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 4fbe344df43ed7f60a3d3a53981088334cb709fc.
</pre>
</div>
</content>
</entry>
<entry>
<title>Change types for source map offsets (#174)</title>
<updated>2016-12-31T01:25:16+00:00</updated>
<author>
<name>Nick Wellnhofer</name>
<email>wellnhofer@aevum.de</email>
</author>
<published>2016-12-31T01:25:16+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=4fbe344df43ed7f60a3d3a53981088334cb709fc'/>
<id>4fbe344df43ed7f60a3d3a53981088334cb709fc</id>
<content type='text'>
* Improve strbuf guarantees

Introduce BUFSIZE_MAX macro and make sure that the strbuf implementation
can handle strings up to this size.

* Abort early if document size exceeds internal limit

* Change types for source map offsets

Switch to size_t for the public API, making the public headers
C89-compatible again.

Switch to bufsize_t internally, reducing memory usage and improving
performance on 32-bit platforms.

* Make parser return NULL on internal index overflow

Make S_parser_feed set an error and ignore subsequent chunks if the
total input document size exceeds an internal limit. Make
cmark_parser_finish return NULL if an error was encountered. Add
public API functions to retrieve error code and error message.

strbuf overflow in renderers and OOM in parser or renderers still
cause an abort.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Improve strbuf guarantees

Introduce BUFSIZE_MAX macro and make sure that the strbuf implementation
can handle strings up to this size.

* Abort early if document size exceeds internal limit

* Change types for source map offsets

Switch to size_t for the public API, making the public headers
C89-compatible again.

Switch to bufsize_t internally, reducing memory usage and improving
performance on 32-bit platforms.

* Make parser return NULL on internal index overflow

Make S_parser_feed set an error and ignore subsequent chunks if the
total input document size exceeds an internal limit. Make
cmark_parser_finish return NULL if an error was encountered. Add
public API functions to retrieve error code and error message.

strbuf overflow in renderers and OOM in parser or renderers still
cause an abort.
</pre>
</div>
</content>
</entry>
<entry>
<title>More sourcepos! (#169)</title>
<updated>2016-12-20T21:00:17+00:00</updated>
<author>
<name>Mathieu Duponchelle</name>
<email>MathieuDuponchelle@users.noreply.github.com</email>
</author>
<published>2016-12-20T21:00:17+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=9e643720ec903f3b448bd2589a0c02c2514805ae'/>
<id>9e643720ec903f3b448bd2589a0c02c2514805ae</id>
<content type='text'>
* open_new_blocks: always create child before advancing offset

* Source map

* Extent's typology

* In-depth python bindings
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* open_new_blocks: always create child before advancing offset

* Source map

* Extent's typology

* In-depth python bindings
</pre>
</div>
</content>
</entry>
<entry>
<title>Reformatted.</title>
<updated>2016-06-25T04:55:44+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2016-06-25T04:55:44+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=2b1b00fb19fe470f7745c208377345975b9e0b2c'/>
<id>2b1b00fb19fe470f7745c208377345975b9e0b2c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>cmark: Implement support for custom allocators</title>
<updated>2016-06-06T22:39:05+00:00</updated>
<author>
<name>Vicent Marti</name>
<email>tanoku@gmail.com</email>
</author>
<published>2016-05-27T14:55:16+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=25429c96f6554ffac415f9d865934b1183f3398e'/>
<id>25429c96f6554ffac415f9d865934b1183f3398e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use clang-format, llvm style, for formatting.</title>
<updated>2015-07-28T04:35:54+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2015-07-28T04:35:54+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=62cb38bf8a826125fba0034221343aa70dd3d415'/>
<id>62cb38bf8a826125fba0034221343aa70dd3d415</id>
<content type='text'>
* Reformatted all source files.
* Added 'format' target to Makefile.
* Removed 'astyle' target.
* Updated .editorconfig.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Reformatted all source files.
* Added 'format' target to Makefile.
* Removed 'astyle' target.
* Updated .editorconfig.
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert code base to strbuf_t</title>
<updated>2015-06-07T19:42:15+00:00</updated>
<author>
<name>Nick Wellnhofer</name>
<email>wellnhofer@aevum.de</email>
</author>
<published>2015-06-07T14:52:44+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=7382fd5eba48107a8190bd2d6232cc3b6e20d8fc'/>
<id>7382fd5eba48107a8190bd2d6232cc3b6e20d8fc</id>
<content type='text'>
There are probably a couple of places I missed. But this will only
be a problem if we use a 64-bit bufsize_t at some point. Then, we'll
get warnings from -Wshorten-64-to-32.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There are probably a couple of places I missed. But this will only
be a problem if we use a 64-bit bufsize_t at some point. Then, we'll
get warnings from -Wshorten-64-to-32.
</pre>
</div>
</content>
</entry>
</feed>
