<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'><id>tag:blogger.com,1999:blog-25186258.post4112429990378089571..comments</id><updated>2011-03-22T09:38:30.293-07:00</updated><category term='google app engine'/><category term='futurama'/><category term='wiki'/><category term='localization'/><category term='Gentium'/><category term='tits'/><category term='fonts'/><category term='coding guidelines'/><category term='gnu'/><category term='RAM'/><category term='context-free grammars'/><category term='simpsons'/><category term='sorting algorithms'/><category term='gpl'/><category term='python'/><category term='parsers'/><category term='debian'/><category term='windows'/><category term='X.Org'/><category term='aadvark'/><category term='Creole'/><category term='ideapad'/><category term='markup'/><category term='CPAN'/><category term='humor'/><category term='oem'/><category term='extensions'/><category term='wifi'/><category term='voodoo'/><category term='php'/><category term='lenovo'/><category term='netbooks'/><category term='mojo'/><category term='music'/><category term='Russian'/><category term='applets'/><category term='Perl'/><category term='agpl'/><category term='Java'/><category term='template engine'/><category term='JAPH'/><category term='saint perl'/><category term='free software'/><category term='fluxbb'/><category term='lxde'/><category term='reluctant algorithms'/><category term='VPS'/><category term='xfce'/><category term='microsoft'/><category term='gitorious'/><category term='regular expressions'/><category term='Russia'/><category term='ubuntu'/><category term='datetime'/><category term='JavaScript'/><category term='punbb'/><category term='plantarium'/><category term='Erlang'/><title type='text'>Comments on Codeholic's Codex: JavaScript Creole 1.0 Wiki Markup Parser</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.ivan.fomichev.name/feeds/4112429990378089571/comments/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default?start-index=26&amp;max-results=25'/><author><name>codeholic</name><uri>http://www.blogger.com/profile/17978566398006976755</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_EP9LkVAtueY/SzKsaoNj15I/AAAAAAAAAAM/dftchxUPFIQ/S220/simpson-bald.png'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>27</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-25186258.post-2792900416714183277</id><published>2010-06-04T14:55:57.574-07:00</published><updated>2010-06-04T14:55:57.574-07:00</updated><title type='text'>Hi folks,

this is a very nice parser for Creole 1...</title><content type='html'>Hi folks,&lt;br /&gt;&lt;br /&gt;this is a very nice parser for Creole 1.0. I&amp;#39;m using it too and I&amp;#39;ve writen an online editor for Creole Markup language. If you want to add it to your Wiki- or CMS-Software please feel free to visit &lt;a href="http://creoledit.users.sourceforge.net/" rel="nofollow"&gt;Creoledit&lt;/a&gt; homepage to get an equivalent editor.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/2792900416714183277'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/2792900416714183277'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1275688557574#c2792900416714183277' title=''/><author><name>Creoledit</name><uri>http://creoledit.users.sourceforge.net/</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-2098344311'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-2016977443167271271</id><published>2010-01-30T01:42:45.135-08:00</published><updated>2010-01-30T01:42:45.135-08:00</updated><title type='text'>Hello, thor! You can either make a subclass of Par...</title><content type='html'>Hello, thor! You can either make a subclass of Parse.Simple.Creole or just make a Parse.Simple.Creole instance and override some grammar rules, e. g.:&lt;br /&gt;&lt;br /&gt;g = this.grammar;&lt;br /&gt;g.leftPanel = { tag: &amp;#39;div&amp;#39;, attrs: { class: &amp;#39;left_panel&amp;#39; }, regex: /(^|\n)[ \t]*&amp;lt;&amp;lt;([\S\s]*?)&amp;lt;&amp;lt;/, capture: 2 };&lt;br /&gt;// other rules here ...&lt;br /&gt;g.root.children.push(g.leftPanel, g.rightPanel, g.horzPanel);&lt;br /&gt;&lt;br /&gt;DISCLAIMER. The code above hasn&amp;#39;t been tested and is not supported. Particularly, it clashes against some proposed WikiCreole standards, see http://wikicreole.org/wiki/CreoleAdditions&lt;br /&gt;&lt;br /&gt;thor, you are welcome to publish your final code here (or give a link to an external page) to illustrate how one can add his own grammar rules.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/2016977443167271271'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/2016977443167271271'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1264844565135#c2016977443167271271' title=''/><author><name>codeholic</name><uri>http://www.blogger.com/profile/17978566398006976755</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_EP9LkVAtueY/SzKsaoNj15I/AAAAAAAAAAM/dftchxUPFIQ/S220/simpson-bald.png'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-204581389'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-5506775952404785826</id><published>2010-01-29T12:55:45.811-08:00</published><updated>2010-01-29T12:55:45.811-08:00</updated><title type='text'>I&amp;#39;ve just come across this parser and it&amp;#39;s...</title><content type='html'>I&amp;#39;ve just come across this parser and it&amp;#39;s working great for me.  I would like to be able to customise it by adding DIV&amp;#39;s though - 3 simple div&amp;#39;s with set classes, but having looked at the code for a while I&amp;#39;m still none the wiser as to how to implement that...&lt;br /&gt;&lt;br /&gt;Anybody able to give me a few pointers in the right direction?&lt;br /&gt;&lt;br /&gt;What I want is:&lt;br /&gt;&lt;br /&gt;Markup: &amp;lt;&amp;lt; content &amp;lt;&amp;lt;&lt;br /&gt;HTML: &amp;lt; div class=&amp;quot;left_panel&amp;quot;&amp;gt;content&lt;br /&gt;&lt;br /&gt;Markup: &amp;gt;&amp;gt; content &amp;gt;&amp;gt;&lt;br /&gt;HTML: &amp;lt; div class=&amp;quot;right_panel&amp;quot;&amp;gt;content&lt;br /&gt;&lt;br /&gt;Markup: ^^ content ^^&lt;br /&gt;HTML: &amp;lt; div class=&amp;quot;horz_panel&amp;quot;&amp;gt;content&lt;br /&gt;&lt;br /&gt;Any help would be greatly appreciated!&lt;br /&gt;&lt;br /&gt;Thanks</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/5506775952404785826'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/5506775952404785826'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1264798545811#c5506775952404785826' title=''/><author><name>thor</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1614500917'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-1462787544171995275</id><published>2009-10-29T21:19:59.288-07:00</published><updated>2009-10-29T21:19:59.288-07:00</updated><title type='text'>In fact it does... sorry !
keep up the good work !...</title><content type='html'>In fact it does... sorry !&lt;br /&gt;keep up the good work !</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/1462787544171995275'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/1462787544171995275'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1256876399288#c1462787544171995275' title=''/><author><name>Chris</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-925540114'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-5442700336489512887</id><published>2009-10-29T21:17:38.183-07:00</published><updated>2009-10-29T21:17:38.183-07:00</updated><title type='text'>Hello !
Heading tags don&amp;#39;t seem to work !
Than...</title><content type='html'>Hello !&lt;br /&gt;Heading tags don&amp;#39;t seem to work !&lt;br /&gt;Thank you !</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/5442700336489512887'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/5442700336489512887'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1256876258183#c5442700336489512887' title=''/><author><name>Chris</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-925540114'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-2405948234609596435</id><published>2009-10-25T09:13:52.759-07:00</published><updated>2009-10-25T09:13:52.759-07:00</updated><title type='text'>Wow, this is awesome. I hope more wikis adopt the ...</title><content type='html'>Wow, this is awesome. I hope more wikis adopt the WikiCreole standard.&lt;br /&gt;&lt;br /&gt;Thanks for sharing!&lt;br /&gt;&lt;br /&gt;~Mikeumus</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/2405948234609596435'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/2405948234609596435'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1256487232759#c2405948234609596435' title=''/><author><name>Mikeumus</name><uri>http://www.blogger.com/profile/10528700504524630195</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1767414923'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-5963761060918260707</id><published>2009-07-27T18:30:16.437-07:00</published><updated>2009-07-27T18:30:16.437-07:00</updated><title type='text'>I&amp;#39;ve spent a few hours this morning adding mor...</title><content type='html'>I&amp;#39;ve spent a few hours this morning adding more improvements to your creole parser. Mainly I&amp;#39;ve added the ability to have pre-processors, eg:&lt;br /&gt;{{{&lt;br /&gt;#!html&lt;br /&gt;&amp;lt;p&amp;gt;Hello World&amp;lt;/p&amp;gt;&lt;br /&gt;}}}&lt;br /&gt;&lt;br /&gt;etc...&lt;br /&gt;&lt;br /&gt;Can we converse via email instead of clogging up your blog ? :)&lt;br /&gt;&lt;br /&gt;My email is prologic at shortcircuit dot net dot au&lt;br /&gt;&lt;br /&gt;cheers&lt;br /&gt;JamesMills</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/5963761060918260707'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/5963761060918260707'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1248744616437#c5963761060918260707' title=''/><author><name>prologic</name><uri>http://www.blogger.com/profile/17525143309293834362</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1025556802'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-1574139970991515769</id><published>2009-07-27T15:21:13.975-07:00</published><updated>2009-07-27T15:21:13.975-07:00</updated><title type='text'>I did something very similar :)</title><content type='html'>I did something very similar :)</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/1574139970991515769'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/1574139970991515769'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1248733273975#c1574139970991515769' title=''/><author><name>prologic</name><uri>http://www.blogger.com/profile/17525143309293834362</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1025556802'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-7131320611401421221</id><published>2009-07-27T13:28:20.473-07:00</published><updated>2009-07-27T13:28:20.473-07:00</updated><title type='text'>An easy way to implement extensions is like this:
...</title><content type='html'>An easy way to implement extensions is like this:&lt;br /&gt;&lt;br /&gt;    if (options &amp;amp;&amp;amp; options.extension instanceof Function) {&lt;br /&gt;        g.extension = { capture: 1, regex: /&amp;lt;&amp;lt;(.+?)&amp;gt;&amp;gt;/,&lt;br /&gt;            build: options.extension };&lt;br /&gt;        g.root.children.push(g.extension);&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;Then you can use it like this:&lt;br /&gt;&lt;br /&gt;    options: {&lt;br /&gt;      extension: function(node, r, options) {&lt;br /&gt;        data = eval(r[1]);&lt;br /&gt;        if (options &amp;amp;&amp;amp; options.forIE) {&lt;br /&gt;          // workaround for bad IE&lt;br /&gt;          data = data.replace(/\n/g, &amp;#39; \r&amp;#39;);&lt;br /&gt;        }&lt;br /&gt;        node.appendChild(document.createTextNode(data));&lt;br /&gt;      }&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;input:  &amp;quot;&amp;lt;&amp;lt;&amp;#39;some&amp;#39; + &amp;#39;text&amp;#39;;&amp;gt;&amp;gt;&amp;quot;&lt;br /&gt;&lt;br /&gt;output: &amp;#39;sometext&amp;#39;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/7131320611401421221'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/7131320611401421221'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1248726500473#c7131320611401421221' title=''/><author><name>codeholic</name><uri>http://www.blogger.com/profile/17978566398006976755</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-204581389'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-3139627829600772410</id><published>2009-07-27T12:54:37.327-07:00</published><updated>2009-07-27T12:54:37.327-07:00</updated><title type='text'>Oh one more thing. I think your code could benefit...</title><content type='html'>Oh one more thing. I think your code could benefit (very much so) if you were to use the mootools library. Just the core mootools library that provides classes and far nicer ways of extending and writing interfaces.&lt;br /&gt;&lt;br /&gt;I don&amp;#39;t know enough about your code to help you, but I&amp;#39;ll be integrating it into a mootools Class and adding extra bits and pieces to it.&lt;br /&gt;&lt;br /&gt;cheers&lt;br /&gt;JamesMills</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/3139627829600772410'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/3139627829600772410'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1248724477327#c3139627829600772410' title=''/><author><name>prologic</name><uri>http://www.blogger.com/profile/17525143309293834362</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1025556802'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-6775705240657305601</id><published>2009-07-27T12:20:28.832-07:00</published><updated>2009-07-27T12:20:28.832-07:00</updated><title type='text'>Okay I look forward to it!
I&amp;#39;ve just finished ...</title><content type='html'>Okay I look forward to it!&lt;br /&gt;I&amp;#39;ve just finished the latest version of my wiki (I rewrite the UI in mootools): http://124.171.217.91:8000/&lt;br /&gt;&lt;br /&gt;Source: http://124.171.217.91:8000/source/&lt;br /&gt;&lt;br /&gt;I look forward to a new and flexible creole parser - I especially need Plugin support :)&lt;br /&gt;&lt;br /&gt;Would you mind taking a look at my wiki engine ... I (as yet) don&amp;#39;t have any idea how I&amp;#39;m going to implement Plugin extensions&lt;br /&gt;&lt;br /&gt;--JamesMills</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/6775705240657305601'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/6775705240657305601'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1248722428832#c6775705240657305601' title=''/><author><name>prologic</name><uri>http://www.blogger.com/profile/17525143309293834362</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1025556802'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-3895012136520235199</id><published>2009-07-27T10:09:30.110-07:00</published><updated>2009-07-27T10:09:30.110-07:00</updated><title type='text'>pyparsing is too complicated. I found &lt;a href="htt...</title><content type='html'>pyparsing is too complicated. I found &lt;a href="http://pages.cpsc.ucalgary.ca/~aycock/spark/" rel="nofollow"&gt;Spark&lt;/a&gt;, that&amp;#39;s almost what I looked for. I&amp;#39;ll try to translate it into JavaScript.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/3895012136520235199'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/3895012136520235199'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1248714570110#c3895012136520235199' title=''/><author><name>codeholic</name><uri>http://www.blogger.com/profile/17978566398006976755</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-204581389'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-3001153674757849463</id><published>2009-07-24T02:07:35.430-07:00</published><updated>2009-07-24T02:07:35.430-07:00</updated><title type='text'>&amp;gt; Can we not make it simpler and define some as...</title><content type='html'>&amp;gt; Can we not make it simpler and define some assumptions&lt;br /&gt;&lt;br /&gt;Yes, I thought about it too...</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/3001153674757849463'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/3001153674757849463'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1248426455430#c3001153674757849463' title=''/><author><name>codeholic</name><uri>http://www.blogger.com/profile/17978566398006976755</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-204581389'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-2130001940990917425</id><published>2009-07-24T02:03:24.008-07:00</published><updated>2009-07-24T02:03:24.008-07:00</updated><title type='text'>Thanks, I&amp;#39;ll take a look.</title><content type='html'>Thanks, I&amp;#39;ll take a look.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/2130001940990917425'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/2130001940990917425'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1248426204008#c2130001940990917425' title=''/><author><name>codeholic</name><uri>http://www.blogger.com/profile/17978566398006976755</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-204581389'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-2677489427707896928</id><published>2009-07-24T02:02:17.606-07:00</published><updated>2009-07-24T02:02:17.606-07:00</updated><title type='text'>Also in regards to your earlier comment ... Can we...</title><content type='html'>Also in regards to your earlier comment ... Can we not make it simpler and define some assumptions (if it&amp;#39;s too hard to implement the plugin extension according to the spec ?)&lt;br /&gt;&lt;br /&gt;For example, in Trac&amp;#39;s wiki I don&amp;#39;t believe it&amp;#39;s possible to have [[FooMacro(...)]] in any other markup.&lt;br /&gt;Trac&amp;#39;s wiki also allows you to use those same macros in processors:&lt;br /&gt;&lt;br /&gt;{{{&lt;br /&gt;#!FooMacro&lt;br /&gt;...&lt;br /&gt;}}}&lt;br /&gt;&lt;br /&gt;cheers&lt;br /&gt;James</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/2677489427707896928'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/2677489427707896928'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1248426137606#c2677489427707896928' title=''/><author><name>prologic</name><uri>http://www.blogger.com/profile/17525143309293834362</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1025556802'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-4908051784075988802</id><published>2009-07-24T02:00:32.552-07:00</published><updated>2009-07-24T02:00:32.552-07:00</updated><title type='text'>I&amp;#39;m a Python developer (hence my project circu...</title><content type='html'>I&amp;#39;m a Python developer (hence my project circuits and circuits.web). Have you looked at pyparsing ?&lt;br /&gt;&lt;br /&gt;cheers&lt;br /&gt;James</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/4908051784075988802'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/4908051784075988802'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1248426032552#c4908051784075988802' title=''/><author><name>prologic</name><uri>http://www.blogger.com/profile/17525143309293834362</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1025556802'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-5146297934804242172</id><published>2009-07-23T22:38:23.621-07:00</published><updated>2009-07-23T22:38:23.621-07:00</updated><title type='text'>The only problem with extensions, and the only rea...</title><content type='html'>The only problem with extensions, and the only reason I still have not implemented them yet, is that according to the &lt;a href="http://wikicreole.org/wiki/GenericExtensionElementProposal" rel="nofollow"&gt;specification&lt;/a&gt;, &amp;quot;the content of the extension element may contain any text, including line breaks, except for the opening and closing extension element markup-codes&amp;quot;.&lt;br /&gt;&lt;br /&gt;The parser used in this Creole markup implementation requires that you describe all possible content elements may contain. (It&amp;#39;s why Chris Purcell called this parser &amp;quot;regular language&amp;quot; recursive descent parser.)&lt;br /&gt;&lt;br /&gt;According to the spec, &amp;quot;the extension element markup may be nested in any other markup&amp;quot;. It means it may contain the text, identical to closing markup-up codes for other elements.&lt;br /&gt;&lt;br /&gt;So, in order to implement the extension element in accordance with the spec, you have to assume in your regexp, that virtually any container element may contain extension elements, which may contain any text, including closing markup for the parent element. It&amp;#39;s quite a task to implement, you know.&lt;br /&gt;&lt;br /&gt;I had enough puzzles working with this parser engine, and sometimes I thought that it would be easier to implement a toothier parser engine than to describe the grammar, that this parser engine can chew. Do you know maybe a simple implementation of context-free grammer parser generator in any imperative programming language? I would translate it to JavaScript then. Please don&amp;#39;t recommend JS/CC, it&amp;#39;s an overkill. I don&amp;#39;t like such solutions.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/5146297934804242172'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/5146297934804242172'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1248413903621#c5146297934804242172' title=''/><author><name>codeholic</name><uri>http://www.blogger.com/profile/17978566398006976755</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-204581389'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-3579578911306274963</id><published>2009-07-23T21:20:09.748-07:00</published><updated>2009-07-23T21:20:09.748-07:00</updated><title type='text'>FYI, I&amp;#39;m developing a heavily client-side (usi...</title><content type='html'>FYI, I&amp;#39;m developing a heavily client-side (using jquery) based wiki with a restful backend and mercurial storage using circutis.web&lt;br /&gt;&lt;br /&gt;Demo: http://124.171.217.91:8000/ (may be intermittently offline)&lt;br /&gt;&lt;br /&gt;cheers&lt;br /&gt;James</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/3579578911306274963'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/3579578911306274963'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1248409209748#c3579578911306274963' title=''/><author><name>prologic</name><uri>http://www.blogger.com/profile/17525143309293834362</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1025556802'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-2403475122121203753</id><published>2009-07-23T21:13:07.929-07:00</published><updated>2009-07-23T21:13:07.929-07:00</updated><title type='text'>I meant the &amp;quot;Plugin&amp;quot; addition - yes. Of ...</title><content type='html'>I meant the &amp;quot;Plugin&amp;quot; addition - yes. Of the form:&lt;br /&gt;&amp;lt;&amp;lt;Plugin(arg1=foo arg2=bar)&amp;gt;&amp;amp;ht;&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve managed to extend your parser to do this in the simplest possible way by adding the following:&lt;br /&gt;&lt;br /&gt;        plugin: { regex: &amp;#39;\\&amp;lt;\\&amp;lt;((?!\\&amp;lt;)[^ &amp;gt;\\n]*(?:}(?!})[^|}\\n]*)*)&amp;gt;&amp;gt;&amp;#39;,&lt;br /&gt;            build: function(node, r, options) {&lt;br /&gt;                if (options &amp;amp;&amp;amp; typeof(options.plugin) != &amp;quot;undefined&amp;quot;) {&lt;br /&gt;                    options.plugin(node, r, options);&lt;br /&gt;                }&lt;br /&gt;            } },&lt;br /&gt;&lt;br /&gt;My low-level JavaScript ain&amp;#39;t that great though and I&amp;#39;m unfamiliar with your parser design (not necessary recursive descent parsers).&lt;br /&gt;&lt;br /&gt;I look forward to your improvements :)&lt;br /&gt;&lt;br /&gt;--JamesMills (prologic)</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/2403475122121203753'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/2403475122121203753'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1248408787929#c2403475122121203753' title=''/><author><name>prologic</name><uri>http://www.blogger.com/profile/17525143309293834362</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1025556802'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-7352167718746887987</id><published>2009-07-23T12:03:44.756-07:00</published><updated>2009-07-23T12:03:44.756-07:00</updated><title type='text'>Yes, I&amp;#39;m planning to implement &lt;a href="http:/...</title><content type='html'>Yes, I&amp;#39;m planning to implement &lt;a href="http://wikicreole.org/wiki/CreoleAdditions" rel="nofollow"&gt;additions&lt;/a&gt;. Shall I let you know when it is available?&lt;br /&gt;&lt;br /&gt;Or did you mean something else by &amp;quot;* Plugins&amp;quot;?</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/7352167718746887987'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/7352167718746887987'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1248375824756#c7352167718746887987' title=''/><author><name>codeholic</name><uri>http://www.blogger.com/profile/17978566398006976755</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-204581389'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-6694563091146490676</id><published>2009-07-20T10:07:45.023-07:00</published><updated>2009-07-20T10:07:45.023-07:00</updated><title type='text'>Hi, Is it possible to extend this JavaScript creol...</title><content type='html'>Hi, Is it possible to extend this JavaScript creole parser to include support for creole additions such as:&lt;br /&gt; * Plugins ?&lt;br /&gt;&lt;br /&gt;--JamesMills</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/6694563091146490676'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/6694563091146490676'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1248109665023#c6694563091146490676' title=''/><author><name>prologic</name><uri>http://www.blogger.com/profile/17525143309293834362</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1025556802'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-8631490153328302252</id><published>2009-02-03T15:13:00.000-08:00</published><updated>2009-02-03T15:13:00.000-08:00</updated><title type='text'>sbarkdull, I've supposed that Creole requires a ti...</title><content type='html'>sbarkdull, I've supposed that Creole requires a title for an image to be set, since there's no example for an image w/o a title anywhere on &lt;A HREF="http://www.wikicreole.org/wiki/" REL="nofollow"&gt;WikiCreole&lt;/A&gt;. Perhaps, it should be clarified.&lt;BR/&gt;&lt;BR/&gt;For now, you can insert an image with an empty title instead, for instance, {{http://www.performancebike.com/images/hd_teamp_07.gif|}}</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/8631490153328302252'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/8631490153328302252'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1233702780000#c8631490153328302252' title=''/><author><name>codeholic</name><uri>http://www.blogger.com/profile/17978566398006976755</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-204581389'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-1208283968245939475</id><published>2009-02-03T13:49:00.000-08:00</published><updated>2009-02-03T13:49:00.000-08:00</updated><title type='text'>Hi Ivan,&lt;br&gt;&lt;br&gt;Thank you for the parser! Nice job...</title><content type='html'>Hi Ivan,&lt;BR/&gt;&lt;BR/&gt;Thank you for the parser! Nice job.&lt;BR/&gt;&lt;BR/&gt;It looks like the image element is broken. When I paste this:&lt;BR/&gt;{{http://www.performancebike.com/images/hd_teamp_07.gif}}&lt;BR/&gt;&lt;BR/&gt;into the creole markup, it doesn't generate an HTML image.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/1208283968245939475'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/1208283968245939475'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1233697740000#c1208283968245939475' title=''/><author><name>sbarkdull</name><uri>http://www.blogger.com/profile/01038341937732250790</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1667589649'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-1125438035835208882</id><published>2009-01-23T09:00:00.000-08:00</published><updated>2009-01-23T09:00:00.000-08:00</updated><title type='text'>BTW, here's &lt;a href="http://www.meatballsociety.or...</title><content type='html'>BTW, here's &lt;A HREF="http://www.meatballsociety.org/Creole/0.4/" REL="nofollow"&gt;original Chris Purcell's parser&lt;/A&gt;.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/1125438035835208882'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/1125438035835208882'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1232730000000#c1125438035835208882' title=''/><author><name>codeholic</name><uri>http://www.blogger.com/profile/17978566398006976755</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-204581389'/></entry><entry><id>tag:blogger.com,1999:blog-25186258.post-8546578612950843291</id><published>2009-01-23T08:31:00.000-08:00</published><updated>2009-01-23T08:31:00.000-08:00</updated><title type='text'>It is! See &lt;a href="http://jscreole.svn.sourceforg...</title><content type='html'>It is! See &lt;A HREF="http://jscreole.svn.sourceforge.net/viewvc/jscreole/" REL="nofollow"&gt;http://jscreole.svn.sourceforge.net/viewvc/jscreole/&lt;/A&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/8546578612950843291'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/25186258/4112429990378089571/comments/default/8546578612950843291'/><link rel='alternate' type='text/html' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html?showComment=1232728260000#c8546578612950843291' title=''/><author><name>codeholic</name><uri>http://www.blogger.com/profile/17978566398006976755</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.ivan.fomichev.name/2008/04/javascript-creole-10-wiki-markup-parser.html' ref='tag:blogger.com,1999:blog-25186258.post-4112429990378089571' source='http://www.blogger.com/feeds/25186258/posts/default/4112429990378089571' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-204581389'/></entry></feed>
