1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-30 01:03:16 +00:00

Treat caption field as plain text

This commit is contained in:
jeremy@jermolene.com 2023-01-13 11:35:01 +00:00
parent 9288420c67
commit c9f2adc391
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ tags: $:/tags/GeospatialDemo
<$list filter="[all[shadows+tiddlers]tag[$:/tags/GeoMarker]sort[caption]]"> <$list filter="[all[shadows+tiddlers]tag[$:/tags/GeoMarker]sort[caption]]">
<li> <li>
<$link> <$link>
<$transclude field="caption"><$view field="title"/></$transclude> <$view field="caption"><$view field="title"/></$view>
</$link> </$link>
</li> </li>
</$list> </$list>
@ -20,7 +20,7 @@ tags: $:/tags/GeospatialDemo
<$list filter="[all[shadows+tiddlers]tag[$:/tags/GeoLayer]sort[caption]]"> <$list filter="[all[shadows+tiddlers]tag[$:/tags/GeoLayer]sort[caption]]">
<li> <li>
<$link> <$link>
<$transclude field="caption"><$view field="title"/></$transclude> <$view field="caption"><$view field="title"/></$view>
</$link> </$link>
</li> </li>
</$list> </$list>

View File

@ -75,7 +75,7 @@ title: $:/plugins/tiddlywiki/geospatial/demo/ui/geomarker
<ul> <ul>
<$list filter="[all[shadows+tiddlers]tag[$:/tags/GeoMarker]sort[caption]] -[<currentTiddler>]"> <$list filter="[all[shadows+tiddlers]tag[$:/tags/GeoMarker]sort[caption]] -[<currentTiddler>]">
<li> <li>
<$link><$transclude field="caption"><$view field="title"/></$transclude></$link> <$link><$view field="caption"><$view field="title"/></$view></$link>
-- --
<$let <$let
otherLocation={{{ [geopoint{!!lat},{!!long}] }}} otherLocation={{{ [geopoint{!!lat},{!!long}] }}}