mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 02:26:19 +00:00
36cf50aa96
Need to do some refactoring of all those isFunctionDefinition/isProcedureDefinition/isWidgetDefinition flags into a single property
29 lines
675 B
Plaintext
29 lines
675 B
Plaintext
title: CustomWidget-Override-Codeblock
|
|
description: Usage of genesis widget with attributes starting with dollar signs
|
|
type: text/vnd.tiddlywiki-multiple
|
|
tags: [[$:/tags/wiki-test-spec]]
|
|
|
|
title: Output
|
|
|
|
\whitespace trim
|
|
\import Definition
|
|
<$codeblock code="Kangaroo"/>
|
|
<$codeblock code={{Subject}}/>
|
|
<$let test="Tiger">
|
|
<$codeblock code=<<test>>/>
|
|
</$let>
|
|
+
|
|
title: Definition
|
|
|
|
\whitespace trim
|
|
\widget $codeblock(code)
|
|
<$genesis $type="codeblock" $remappable="no" code={{{ [<code>addprefix[£]addsuffix[@]] }}}/>
|
|
\end
|
|
+
|
|
title: Subject
|
|
|
|
Python
|
|
+
|
|
title: ExpectedResult
|
|
|
|
<p><pre><code>£Kangaroo@</code></pre><pre><code>£Python@</code></pre><pre><code>£Tiger@</code></pre></p> |