kopia lustrzana https://github.com/miklobit/TiddlyWiki5
Make exporter descriptions translatable
rodzic
8e685e5150
commit
4dec771c20
|
@ -0,0 +1,6 @@
|
|||
title: $:/language/Exporters/
|
||||
|
||||
StaticRiver: River of tiddlers as static HTML file
|
||||
JsonFile: JSON tiddlers file
|
||||
CsvFile: CSV tiddlers file
|
||||
TidFile: Single tiddler ".tid" file
|
|
@ -1,6 +1,6 @@
|
|||
title: $:/core/templates/exporters/CsvFile
|
||||
tags: $:/tags/Exporter
|
||||
description: CSV tiddlers file
|
||||
description: {{$:/language/Exporters/CsvFile}}
|
||||
filename: tiddlers.csv
|
||||
|
||||
\define renderContent()
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
title: $:/core/templates/exporters/JsonFile
|
||||
tags: $:/tags/Exporter
|
||||
description: JSON tiddlers file
|
||||
description: {{$:/language/Exporters/JsonFile}}
|
||||
filename: tiddlers.json
|
||||
|
||||
\define renderContent()
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
title: $:/core/templates/exporters/Static
|
||||
title: $:/core/templates/exporters/StaticRiver
|
||||
tags: $:/tags/Exporter
|
||||
description: Tiddlers as static HTML
|
||||
description: {{$:/language/Exporters/StaticRiver}}
|
||||
filename: static.tiddlers.html
|
||||
|
||||
\define tv-wikilink-template() #$uri_encoded$
|
||||
|
@ -27,7 +27,7 @@ filename: static.tiddlers.html
|
|||
<body class="tc-body">
|
||||
{{$:/StaticBanner||$:/core/templates/html-tiddler}}
|
||||
<section class="tc-story-river">
|
||||
{{$:/core/templates/exporters/Static/Content||$:/core/templates/html-tiddler}}
|
||||
{{$:/core/templates/exporters/StaticRiver/Content||$:/core/templates/html-tiddler}}
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
|
@ -1,4 +1,4 @@
|
|||
title: $:/core/templates/exporters/Static/Content
|
||||
title: $:/core/templates/exporters/StaticRiver/Content
|
||||
|
||||
\define renderContent()
|
||||
{{{ $(exportFilter)$ ||$:/core/templates/static-tiddler}}}
|
|
@ -1,6 +1,6 @@
|
|||
title: $:/core/templates/exporters/TidFile
|
||||
tags: $:/tags/Exporter
|
||||
description: Plain text .tid tiddler file
|
||||
description: {{$:/language/Exporters/TidFile}}
|
||||
filename: tiddler.tid
|
||||
|
||||
\define renderContent()
|
||||
|
|
Ładowanie…
Reference in New Issue