mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
fb85e91f82
* Added some passing macro definition parsing tests * Added two failing tests to illustrate bug #3460 * Allow \end to end an whitespace only/empty macro definition. Fixes #3460 * Added some passing procedure definition tests * Added two failing procedure tests to illustrate bug #3460 * Allow \end to end a whitespace only/empty procedure/function/widget definition. Fixes #3640 * Fixed wording of comment
16 lines
279 B
Plaintext
16 lines
279 B
Plaintext
title: Macros/EndInBody
|
|
description: \end line starting with non-whitespace is part of macro body
|
|
type: text/vnd.tiddlywiki-multiple
|
|
tags: [[$:/tags/wiki-test-spec]]
|
|
|
|
title: Output
|
|
|
|
\define hello()
|
|
hello \end
|
|
\end
|
|
|
|
Out: <<hello>>
|
|
+
|
|
title: ExpectedResult
|
|
|
|
<p>Out: hello \end</p> |