1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-12-02 14:58:06 +00:00

Improve handling for titles starting with +-~= (#4084) (#4087)

* $tw.utils.stringifyList will wrap tiddlers starting with `+-~=` in brackets.
This commit is contained in:
Cameron Fischer
2019-08-24 06:35:03 -04:00
committed by Jeremy Ruston
parent fada96651e
commit 67066fe86e
2 changed files with 16 additions and 5 deletions

View File

@@ -314,13 +314,13 @@ $tw.utils.parseDate = function(value) {
// Stringify an array of tiddler titles into a list string
$tw.utils.stringifyList = function(value) {
if($tw.utils.isArray(value)) {
var result = [];
for(var t=0; t<value.length; t++) {
var result = new Array(value.length);
for(var t=0, l=value.length; t<l; t++) {
var entry = value[t] || "";
if(entry.indexOf(" ") !== -1) {
result.push("[[" + entry + "]]");
if(entry.indexOf(" ") !== -1 || "+-~=".indexOf(entry[0]) !== -1) {
result[t] = "[[" + entry + "]]";
} else {
result.push(entry);
result[t] = entry;
}
}
return result.join(" ");