<feed xmlns='http://www.w3.org/2005/Atom'>
<title>cmark/src/main.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>add support for groff mom filter</title>
<updated>2020-09-02T08:11:08+00:00</updated>
<author>
<name>KatolaZ</name>
<email>katolaz@freaknet.org</email>
</author>
<published>2020-09-02T08:11:08+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=e79cc4d68e6333e13d53e5262572e99c6877cbc6'/>
<id>e79cc4d68e6333e13d53e5262572e99c6877cbc6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Re-add `--safe` command-line option as a no-op.</title>
<updated>2020-06-22T17:27:47+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2020-06-22T17:27:47+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=54b377278187f02621a60b3585de4ec02399234a'/>
<id>54b377278187f02621a60b3585de4ec02399234a</id>
<content type='text'>
See #344.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See #344.
</pre>
</div>
</content>
</entry>
<entry>
<title>Rearrange struct cmark_node</title>
<updated>2020-01-23T16:25:54+00:00</updated>
<author>
<name>Nick Wellnhofer</name>
<email>wellnhofer@aevum.de</email>
</author>
<published>2020-01-19T12:46:10+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=f3f50b29d615d2678d8047dc277b108cc5143167'/>
<id>f3f50b29d615d2678d8047dc277b108cc5143167</id>
<content type='text'>
Introduce multi-purpose data/len members in struct cmark_node. This
is mainly used to store literal text for inlines, code and HTML blocks.

Move the content strbuf for blocks from cmark_node to cmark_parser.
When finalizing nodes that allow inlines (paragraphs and headings),
detach the strbuf and store the block content in the node's data/len
members. Free the block content after processing inlines.

Reduces size of struct cmark_node by 8 bytes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Introduce multi-purpose data/len members in struct cmark_node. This
is mainly used to store literal text for inlines, code and HTML blocks.

Move the content strbuf for blocks from cmark_node to cmark_parser.
When finalizing nodes that allow inlines (paragraphs and headings),
detach the strbuf and store the block content in the node's data/len
members. Free the block content after processing inlines.

Reduces size of struct cmark_node by 8 bytes.
</pre>
</div>
</content>
</entry>
<entry>
<title>print_usage(): Minor grammar fix, swap two words (#305)</title>
<updated>2019-07-05T13:22:04+00:00</updated>
<author>
<name>Øyvind A. Holm</name>
<email>sunny@sunbase.org</email>
</author>
<published>2019-07-05T13:22:04+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=4cc902add66a152becf73ba35a89e4e8b39aa657'/>
<id>4cc902add66a152becf73ba35a89e4e8b39aa657</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<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>Make rendering safe by default.</title>
<updated>2019-03-18T05:43:38+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2019-03-18T05:43:38+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=325a1471d2a32bcc1e2d2580b973ff4ba1df85e8'/>
<id>325a1471d2a32bcc1e2d2580b973ff4ba1df85e8</id>
<content type='text'>
Removes CMARK_OPT_SAFE from options.

Adds CMARK_OPT_UNSAFE, with the opposite meaning.
The new default behavior is to suppress raw HTML and
potentially dangerous links.  The CMARK_OPT_UNSAFE
option has to be set explicitly to prevent this.

--------------------------------------------------------
NOTE: This change will require modifications in
bindings for cmark and in most libraries and programs
that use cmark.
--------------------------------------------------------

Closes #239, #273.

Borrows heavily from @kivikakk's patch in github/cmark-gfm#123.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Removes CMARK_OPT_SAFE from options.

Adds CMARK_OPT_UNSAFE, with the opposite meaning.
The new default behavior is to suppress raw HTML and
potentially dangerous links.  The CMARK_OPT_UNSAFE
option has to be set explicitly to prevent this.

--------------------------------------------------------
NOTE: This change will require modifications in
bindings for cmark and in most libraries and programs
that use cmark.
--------------------------------------------------------

Closes #239, #273.

Borrows heavily from @kivikakk's patch in github/cmark-gfm#123.
</pre>
</div>
</content>
</entry>
<entry>
<title>check for OpenBSD 5.9+</title>
<updated>2018-11-20T20:28:30+00:00</updated>
<author>
<name>Ashe Connor</name>
<email>ashe@kivikakk.ee</email>
</author>
<published>2018-11-21T02:34:07+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=0d6062b80621cd52500b69c3fc0f1018e9aba7ad'/>
<id>0d6062b80621cd52500b69c3fc0f1018e9aba7ad</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use pledge(2) on OpenBSD</title>
<updated>2018-11-20T00:20:26+00:00</updated>
<author>
<name>Ashe Connor</name>
<email>ashe@kivikakk.ee</email>
</author>
<published>2018-11-20T00:20:26+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=65110289fa5c284883bea92ed72d2bfcdfb761ba'/>
<id>65110289fa5c284883bea92ed72d2bfcdfb761ba</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Advertise --validate-utf8 in usage information</title>
<updated>2017-08-01T12:39:01+00:00</updated>
<author>
<name>Nguyễn Thái Ngọc Duy</name>
<email>pclouds@gmail.com</email>
</author>
<published>2017-08-01T12:38:08+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=d695e66f6cae2f4c8e57783b7d689a9583dc100f'/>
<id>d695e66f6cae2f4c8e57783b7d689a9583dc100f</id>
<content type='text'>
This option was added in 04726a7 (Added `CMARK_OPT_VALIDATE_UTF8`
option. - 2015-06-16) but not "documented".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This option was added in 04726a7 (Added `CMARK_OPT_VALIDATE_UTF8`
option. - 2015-06-16) but not "documented".
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove normalize as an option per #190 (#194)</title>
<updated>2017-05-05T08:02:34+00:00</updated>
<author>
<name>Yuki Izumi</name>
<email>kivikakk@github.com</email>
</author>
<published>2017-05-05T08:02:34+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=6313fff5f9482bdc0489dd19bf9c4ff6ed817e71'/>
<id>6313fff5f9482bdc0489dd19bf9c4ff6ed817e71</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
