Moves some exsiting macro tests to their own folders (#7940)

This commit is contained in:
Mario Pietsch
2024-01-22 18:43:23 +01:00
committed by GitHub
parent 518c5d3ef6
commit 100eaeff30
4 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
title: Macros/TrailingNewlines
description: Trailing newlines in macros must not be dropped
type: text/vnd.tiddlywiki-multiple
tags: [[$:/tags/wiki-test-spec]]
title: Output
\define inner()
Paragraph 1
Paragraph 2
\end
\define outer()
<$macrocall $name=inner />
\end
<<outer>>
+
title: ExpectedResult
<p>Paragraph 1</p><p>Paragraph 2</p>