From 6b15a01f9cc07f09d4818981b52d693a6e573b79 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Mon, 24 Nov 2014 17:42:30 +0000 Subject: [PATCH] Added docs for custom export formats --- .../Creating a custom export format.tid | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 editions/tw5.com/tiddlers/howtos/Creating a custom export format.tid diff --git a/editions/tw5.com/tiddlers/howtos/Creating a custom export format.tid b/editions/tw5.com/tiddlers/howtos/Creating a custom export format.tid new file mode 100644 index 000000000..657371eb2 --- /dev/null +++ b/editions/tw5.com/tiddlers/howtos/Creating a custom export format.tid @@ -0,0 +1,21 @@ +title: Creating a custom export format +modified: 20141124173526227 +created: 20141124173526227 +tags: [[Customise TiddlyWiki]] + +To create a custom export format that exports tiddlers as their raw body text: + +# Create a tiddler with the following fields: +#* ''tags'': [[$:/tags/Exporter]] +#* ''description'': Description of this importer +#* ''extension'': Default file extension for this export format (including the dot; for example `.tid`) +# Set the following content: + +``` +\define renderContent() +{{{ $(exportFilter)$ ||$:/core/templates/plain-text-tiddler}}} +\end +<> +``` + +The variable `exportFilter` contains a filter defining which tiddlers should be exported.