mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 18:17:20 +00:00
Fixed problem with recipe files containing carriage returns
This commit is contained in:
parent
0d1a2ef21c
commit
02a2630dd6
@ -145,7 +145,7 @@ Recipe.prototype.sortTiddlersForMarker = function(marker) {
|
||||
// Process the contents of a recipe file
|
||||
Recipe.prototype.processRecipeFile = function(recipe,text,contextPath) {
|
||||
var matchLine = function(linetext) {
|
||||
var lineRegExp = /^(\s*)([^\s\:]+)\s*:\s*(.+)*$/,
|
||||
var lineRegExp = /^(\s*)([^\s\:]+)\s*:\s*(.+)*\s*$/,
|
||||
match = lineRegExp.exec(linetext);
|
||||
return match ? {
|
||||
indent: match[1],
|
||||
|
Loading…
Reference in New Issue
Block a user