forked from cory/tildefriends
Cory McWilliams
ae10d3fa6f
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3791 ed5197a5-7fde-0310-b194-c3ffbd925b24
22 lines
645 B
JavaScript
22 lines
645 B
JavaScript
"use strict";
|
|
|
|
function markdown(md) {
|
|
var reader = new commonmark.Parser({safe: true});
|
|
var writer = new commonmark.HtmlRenderer();
|
|
var parsed = reader.parse(md || '');
|
|
var walker = parsed.walker();
|
|
var event, node;
|
|
while ((event = walker.next())) {
|
|
node = event.node;
|
|
if (event.entering && node.type == 'link') {
|
|
if (node.destination.startsWith('@') &&
|
|
node.destination.endsWith('.ed25519')) {
|
|
node.destination = '#' + node.destination;
|
|
} else if (node.destination.startsWith('%') &&
|
|
node.destination.endsWith('.sha256')) {
|
|
node.destination = '#' + node.destination;
|
|
}
|
|
}
|
|
}
|
|
return writer.render(parsed);
|
|
} |