mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 23:56:18 +00:00
28 lines
535 B
Plaintext
28 lines
535 B
Plaintext
title: Widgets/ViewWidget/Parameter/field-index
|
|
description: Test view-widget parameters index type=application/json and type=application/x-tiddler-dictionary
|
|
type: text/vnd.tiddlywiki-multiple
|
|
tags: [[$:/tags/wiki-test-spec]]
|
|
|
|
title: input
|
|
type: application/x-tiddler-dictionary
|
|
|
|
01: value 01
|
|
02: value 02
|
|
+
|
|
title: input-json
|
|
type: application/json
|
|
|
|
{
|
|
"01": "value 01",
|
|
"02": "value 02"
|
|
}
|
|
+
|
|
title: Output
|
|
|
|
<$view tiddler="input-json" index="01"/>
|
|
|
|
<$view tiddler="input" index="02"/>
|
|
+
|
|
title: ExpectedResult
|
|
|
|
value 01<p>value 02</p> |