<feed xmlns='http://www.w3.org/2005/Atom'>
<title>cmark/js, branch master</title>
<subtitle>My own fork of cmark for commonmark conversion</subtitle>
<link rel='alternate' type='text/html' href='http://5.196.69.93/cmark/'/>
<entry>
<title>Removed JS implementation, which is moving to its own repo:</title>
<updated>2015-01-24T19:07:01+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2015-01-24T19:07:01+00:00</published>
<link rel='alternate' type='text/html' href='http://5.196.69.93/cmark/commit/?id=d6c615f2680e79bbb76cc85a056aadfe3524513f'/>
<id>d6c615f2680e79bbb76cc85a056aadfe3524513f</id>
<content type='text'>
&lt;https://github.com/jgm/commonmark.js&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
&lt;https://github.com/jgm/commonmark.js&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed unused variable.</title>
<updated>2015-01-23T23:27:27+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>fiddlosopher@gmail.com</email>
</author>
<published>2015-01-23T23:27:27+00:00</published>
<link rel='alternate' type='text/html' href='http://5.196.69.93/cmark/commit/?id=31530d93448bdf93c0797540a73c6b67586ad5e1'/>
<id>31530d93448bdf93c0797540a73c6b67586ad5e1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Put generated commonmark.js in js/dist/ rather than js/.</title>
<updated>2015-01-23T22:41:25+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>fiddlosopher@gmail.com</email>
</author>
<published>2015-01-23T22:39:23+00:00</published>
<link rel='alternate' type='text/html' href='http://5.196.69.93/cmark/commit/?id=41d211952ce549f13bc119e27f9b690f625f53d3'/>
<id>41d211952ce549f13bc119e27f9b690f625f53d3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Adjust lastLineLength before returning.</title>
<updated>2015-01-21T18:10:21+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2015-01-21T17:27:44+00:00</published>
<link rel='alternate' type='text/html' href='http://5.196.69.93/cmark/commit/?id=c737934e286710a2b8094c6255eee98102eed57a'/>
<id>c737934e286710a2b8094c6255eee98102eed57a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Renamed first_nonspace -&gt; next_nonspace.</title>
<updated>2015-01-21T18:10:21+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2015-01-21T06:31:08+00:00</published>
<link rel='alternate' type='text/html' href='http://5.196.69.93/cmark/commit/?id=66d317950fe7ffc7d571556e4e56e442a0755bb4'/>
<id>66d317950fe7ffc7d571556e4e56e442a0755bb4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added currentLine property to Parser.</title>
<updated>2015-01-21T18:10:21+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2015-01-21T06:29:54+00:00</published>
<link rel='alternate' type='text/html' href='http://5.196.69.93/cmark/commit/?id=b25a72edb584956164c7ce344129e73b8927dd61'/>
<id>b25a72edb584956164c7ce344129e73b8927dd61</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Moved continuation checks &amp; finalizers into blocks property.</title>
<updated>2015-01-21T18:10:07+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2015-01-18T19:48:20+00:00</published>
<link rel='alternate' type='text/html' href='http://5.196.69.93/cmark/commit/?id=95a1be5747a430ff408bf88f50452fe936c785b2'/>
<id>95a1be5747a430ff408bf88f50452fe936c785b2</id>
<content type='text'>
This is a first step towards keeping the code for each kind of
block in a central place, rather than spread all over the code
base.

This is preparatory for a more modular structure, where each
type of block has a record describing how it is parsed and
finalized.

Eventually this will also contain functions for checking for
a block start, and metadata that determines how line data
should be handled.

There is a small performance penalty (about 3%?) but it seems
worth it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a first step towards keeping the code for each kind of
block in a central place, rather than spread all over the code
base.

This is preparatory for a more modular structure, where each
type of block has a record describing how it is parsed and
finalized.

Eventually this will also contain functions for checking for
a block start, and metadata that determines how line data
should be handled.

There is a small performance penalty (about 3%?) but it seems
worth it.
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed unnecessary check.</title>
<updated>2015-01-21T18:07:07+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2015-01-18T23:49:59+00:00</published>
<link rel='alternate' type='text/html' href='http://5.196.69.93/cmark/commit/?id=fcc419a04e5db89586edb0fb29707144225e129b'/>
<id>fcc419a04e5db89586edb0fb29707144225e129b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Reverted addition of offset property to DocParser."</title>
<updated>2015-01-21T18:01:51+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2015-01-18T19:45:29+00:00</published>
<link rel='alternate' type='text/html' href='http://5.196.69.93/cmark/commit/?id=ff2c7c8f52c2f536ae67dd72a6ee83e00aec5635'/>
<id>ff2c7c8f52c2f536ae67dd72a6ee83e00aec5635</id>
<content type='text'>
This reverts commit 16b275eb7b83ccbea6ef18b1c62efa655a1d3759.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 16b275eb7b83ccbea6ef18b1c62efa655a1d3759.
</pre>
</div>
</content>
</entry>
<entry>
<title>Propagate lastLineBlank up through parents.</title>
<updated>2015-01-21T17:45:13+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2015-01-21T17:40:12+00:00</published>
<link rel='alternate' type='text/html' href='http://5.196.69.93/cmark/commit/?id=f499e4f2be96ec56844afcc59c3db26038066d27'/>
<id>f499e4f2be96ec56844afcc59c3db26038066d27</id>
<content type='text'>
Previously we just kept it set on the bottom child.
But this will give a quicker determination of lastLineBlank.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously we just kept it set on the bottom child.
But this will give a quicker determination of lastLineBlank.
</pre>
</div>
</content>
</entry>
</feed>
