Hi,
I know we can export one tiddler as HTML, but tiddlywiki adds more than I want: CSS, etc. Is it possible to make a plugin for export just as plain static HTML. For example, this tid
created: 20180502113635816 modified: 20180502113720458 tags: foo roo title: Hola This is a ''test''
exports to
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Hola</title>
<meta name="keywords" content="foo, roo" />
<meta name="generator" content="tiddlywiki" />
<meta name="created" content="20180502113635816" />
<meta name="modified" content="20180502113720458" />
</head>
<body>
<p>This is a <strong>test</strong></p>
</body>
</html>
Thanks in advance,
Xavier