I am wondering if there is an expression to use in the
$:/core/templates/static.tiddler.html that would enable each Node.js generated tiddler to have its individual title in the
<title> tag (in the HTML page
<head> section), rather than the main Tiddlywiki title that is currently used? (i.e.:
<title>`{{$:/core/wiki/title}}`</title>) I have found a regular expression to do this in Notepad++ after the static site pages are generated (see below), but it would be much more convenient for it to be done automatically. (Hope that all makes sense!)
---
Find: <title>([^<]+)(</title>[\S\s]+?<h2 class="tc-title">)([^<]+)
Replace: <title>$3$2$3