mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 10:34:53 +00:00
18 lines
373 B
Plaintext
18 lines
373 B
Plaintext
title: Transclude/Parameterised/Shortcut
|
|
description: Simple parameterised transclusion
|
|
type: text/vnd.tiddlywiki-multiple
|
|
tags: [[$:/tags/wiki-test-spec]]
|
|
|
|
title: Output
|
|
|
|
\whitespace trim
|
|
\function test(one:'Jaguar')
|
|
{<$text text=<<one>>/>}
|
|
\end
|
|
|
|
<$transclude $variable='test' one='Ferret'/>
|
|
<$transclude $variable='test'/>
|
|
_
|
|
title: ExpectedResult
|
|
|
|
<p>{Ferret}{Jaguar}</p> |