1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2026-05-06 21:51:31 +00:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Jeremy Ruston
d8d3b409c3 Merge branch 'master' into restore-compact-call-syntax 2026-04-01 13:22:52 +01:00
Jeremy Ruston
3d70015d5b Oops broken test 2026-04-01 13:20:04 +01:00
Jeremy Ruston
55deaf2f11 Initial commit 2026-04-01 13:09:51 +01:00
2 changed files with 29 additions and 1 deletions

View File

@@ -239,7 +239,7 @@ exports.parseMacroInvocationAsTransclusion = function(source,pos) {
pos = token.end;
// Check that the tag is terminated by a space or >>, and that there is a closing >> somewhere ahead
if(!(source.charAt(pos) === ">" && source.charAt(pos + 1) === ">") ) {
if(!$tw.utils.parseWhiteSpace(source,pos) || source.indexOf(">>",pos) === -1) {
if(source.indexOf(">>",pos) === -1) {
return null;
}
}

View File

@@ -0,0 +1,28 @@
title: Procedures/Calls
description: Procedure Calls
type: text/vnd.tiddlywiki-multiple
tags: [[$:/tags/wiki-test-spec]]
title: Output
\procedure test(param)
<$text text=<<param>>/>
\end test
-
<<test Hello>>
-
<<test"Hello">>
-
<<test'Hello'>>
-
+
title: ExpectedResult
<p>-
Hello
-
Hello
-
Hello
-</p>