autoType sequences must continue using double-backslashes for escaped characters
This commit is contained in:
parent
fd3348f907
commit
dbc21c3d85
2 changed files with 7 additions and 2 deletions
|
|
@ -455,7 +455,12 @@ MarkOut.prototype.convertMD = function(sIndent)
|
|||
if (sName == 'automount') sName = 'autoMount'; // for backward compatibility
|
||||
if (sName == 'autotype') {
|
||||
sName = 'autoType';
|
||||
sValue = sValue.replace(/\\/g, "\");
|
||||
/*
|
||||
* To maintain parity with Jekyll, autoType sequences must continue to use double backslashes,
|
||||
* so my attempt to automatically "double" any backslashes in autoType sequences was for naught.
|
||||
*
|
||||
* sValue = sValue.replace(/\\/g, "\");
|
||||
*/
|
||||
}
|
||||
if (!id && sName == 'id') {
|
||||
id = sValue;
|
||||
|
|
|
|||
Loading…
Reference in a new issue