Add code blocks (both markdown and github-style) and strikethrough
var out = ['<p>'];
var endpush = null;
var listMode = false;
+ var codeMode = false;
+ var githubCodeMode = false;
lines.forEach(function(l) {
+ // Blank line
if (l == '') {
+ // Turn single linebreaks into paragraphs
if (out[out.length - 1] == '<br>') {
out[out.length - 1] = '<p>';
}
+ // End bullet list
if (out[out.length - 1] == '</li>') {
out.push('</ul>');
out.push('<p>');
listMode = false;
}
+ // End code mode
+ if (codeMode) {
+ out.push('</pre>');
+ out.push('<p>');
+ codeMode = false;
+ }
+ return;
+ }
+
+ // Sometimes I wish more languages had Perl's bistable .. operator.
+ if (githubCodeMode) {
+ if (l == '```') {
+ out.push('</pre>');
+ out.push('<p>');
+ githubCodeMode = false;
+ } else {
+ out.push(l + "\n");
+ }
+ return;
+ } else {
+ if (l == '```') {
+ out.push('<pre>');
+ githubCodeMode = true;
+ return;
+ }
+ }
+
+ // Create a code block when lines begin with at least four spaces
+ if (l.substr(0, 4) == ' ') {
+ if (!codeMode) {
+ out.push('<pre>');
+ codeMode = true;
+ }
+ out.push(l.substr(4) + "\n");
return;
+ } else {
+ if (codeMode) {
+ out.push('</pre>');
+ codeMode = false;
+ }
}
// Put quoted material into a special paragraph
l = l.replace(/([^\w\\]|^)\*\*(\w[^*]*)\*\*(\W|$)/g, '$1<b>$2</b>$3');
l = l.replace(/([^\w\\]|^)\*(\w[^*]*)\*(\W|$)/g, '$1<i>$2</i>$3');
+ // Turn ~~foo~~ into strikethrough
+ l = l.replace(/([^\w\\]|^)~~(\w[^~]*)~~(\W|$)/g, '$1<s>$2</s>$3');
+
// Turn refs and tags into links
l = l.replace(/(\s|^)#([A-Za-z0-9_-]+)/g, '$1<a href="#/tag/$2" class="ref" onclick="return blerg.Util.qlink(event)">#$2</a>');
l = l.replace(/(\s|^)@([A-Za-z0-9_-]+)(\/\d+)?/g, '$1<a href="#$2$3" class="ref" onclick="return blerg.Util.qlink(event)">@$2</a>');
}
// Remove backslashes from escaped metachars
- l = l.replace(/\\([*\[\]@#])/g, '$1');
+ l = l.replace(/\\([*\[\]@#~])/g, '$1');
out.push(l);
if (endpush) {
out.push('<br>');
}
});
- while (out[out.length - 1] == '<br>' || out[out.length - 1] == '<p>')
+ while (out[out.length - 1] == '<br>' || out[out.length - 1] == '<p>') {
out.pop();
- if (listMode)
+ }
+ if (listMode) {
out.push('</ul>');
+ }
+ if (codeMode || githubCodeMode) {
+ out.push('</pre>');
+ }
return out.join('');
}