kopia lustrzana https://github.com/miklobit/TiddlyWiki5
Fix recipe loading to handle comments
rodzic
0731135866
commit
a13d30e85a
|
@ -22,6 +22,9 @@ exports["application/vnd.tiddlywiki2-recipe"] = function(text,fields) {
|
|||
parseRecipe = function(text) {
|
||||
var recipe = [];
|
||||
text.toString().split(/\r?\n/mg).forEach(function(line) {
|
||||
// Check if the line is a comment
|
||||
if(line.charAt(0) !== "#") {
|
||||
// Find the colon splitting the name from the value
|
||||
var p = line.indexOf(":");
|
||||
if(p !== -1) {
|
||||
recipe.push({
|
||||
|
@ -29,6 +32,7 @@ exports["application/vnd.tiddlywiki2-recipe"] = function(text,fields) {
|
|||
value: line.substr(p+1).trim()
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
return recipe;
|
||||
},
|
||||
|
|
Ładowanie…
Reference in New Issue