<feed xmlns='http://www.w3.org/2005/Atom'>
<title>cmark/src/buffer.c, 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>Remove leftover includes of memory.h.</title>
<updated>2019-03-29T04:29:23+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2019-03-29T04:29:00+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=8ceba9fbde543f3b1711c0ebf476f16d3b606da5'/>
<id>8ceba9fbde543f3b1711c0ebf476f16d3b606da5</id>
<content type='text'>
Closes #290.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #290.
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed abort outside of conditional (typo).</title>
<updated>2017-04-03T09:09:48+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2017-04-03T09:09:48+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=b75890e0fd7abb995d083b795c2cd45703b7cb22'/>
<id>b75890e0fd7abb995d083b795c2cd45703b7cb22</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed coercion in error message when aborting from buffer.</title>
<updated>2017-04-03T08:57:42+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2017-04-03T08:57:42+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=3aaf80487cdd34cf374eb02e52e5836712b4e51b'/>
<id>3aaf80487cdd34cf374eb02e52e5836712b4e51b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Print message to stderr when we abort due to memory demands.</title>
<updated>2017-04-03T08:01:09+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2017-04-03T08:01:09+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=5c2f3341e3c129aeb27f70fe6ca9ed0fea8f2383'/>
<id>5c2f3341e3c129aeb27f70fe6ca9ed0fea8f2383</id>
<content type='text'>
Closes #188.

@nwellnhof - could you have a look and let me know if you
think this is a bad idea or could be improved?
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #188.

@nwellnhof - could you have a look and let me know if you
think this is a bad idea or could be improved?
</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>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>msvc: Fix warnings and errors</title>
<updated>2016-06-06T22:39:06+00:00</updated>
<author>
<name>Vicent Marti</name>
<email>tanoku@gmail.com</email>
</author>
<published>2016-06-06T09:50:13+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=d4cb8e767ce224d31501c19fb11a220824df9bf8'/>
<id>d4cb8e767ce224d31501c19fb11a220824df9bf8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>mem: Add a `realloc` pointer to the memory handler</title>
<updated>2016-06-06T22:39:06+00:00</updated>
<author>
<name>Vicent Marti</name>
<email>tanoku@gmail.com</email>
</author>
<published>2016-06-06T09:45:47+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=fc1299a51ede05b3a76ae2f5a3ce882741a43a8b'/>
<id>fc1299a51ede05b3a76ae2f5a3ce882741a43a8b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>buffer: rever to using a 32-bit bufsize_t</title>
<updated>2016-06-06T22:39:05+00:00</updated>
<author>
<name>Vicent Marti</name>
<email>tanoku@gmail.com</email>
</author>
<published>2016-05-30T13:54:13+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=8e11c6d7a2f43bd507cc0349843c6fde8392eccb'/>
<id>8e11c6d7a2f43bd507cc0349843c6fde8392eccb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
