Merge pre-1.20.5 changes from next-release (more OS/2-related stuff)

This commit is contained in:
Jeff Parsons 2016-01-21 12:01:56 -08:00
commit e08104893d
13 changed files with 1489 additions and 33 deletions

View file

@ -800,10 +800,9 @@ MarkOut.prototype.convertMDLines = function(s)
/**
* convertMDLinks(sBlock)
*
* Aside from basic "inline" Markdown links, we also support named anchors; if the link begins with '#',
* we strip the '#' and use the remainder of the link as the name of the anchor. To reference a named
* anchor from another link, you have to specify a path with '#' and the anchor name appended, in order
* to distinguish an anchor name from an anchor reference.
* Aside from basic "inline" Markdown links, we also support named anchors; if the link begins with '!',
* we strip the '!' and use the remainder of the link as the name of the anchor. To reference a named
* anchor from another link, specify a path with '#' and the anchor name appended.
*
* Note that the need for named anchors is somewhat diminished now that I automatically generate IDs for
* all heading tags (eg, <h1>); refer to the generateID() function that's used in convertMDBlocks().