Siniy-kit,
More info but not your exact solution. What method are you using to
generate static pages? Using tiddler export from the browser the html files
are named after the tiddler title.
The export static tiddler template is $:/core/templates/static-tiddler
Which reads
<a name=<<currentTiddler>>>
<$transclude tiddler="$:/core/ui/ViewTemplate"/>
</a>
So it is making use of the $:/core/ui/ViewTemplate
So I cloned $:/core/ui/ViewTemplate to a new
tiddler $:/core/ui/OutputTemplate
and changed $:/core/templates/static-tiddler
<a name=<<currentTiddler>>>
<$transclude tiddler="$:/core/ui/OutputTemplate"/>
</a>
So now $:/core/ui/OutputTemplate
\define folded-state()
$:/state/folded/$(currentTiddler)$
\end
<$vars storyTiddler=<<currentTiddler>> tiddlerInfoState=<<qualify
"$:/state/popup/tiddler-info">>><div data-tiddler-title=<<currentTiddler>>
data-tags={{!!tags}} class={{{ tc-tiddler-frame tc-tiddler-view-frame [<
currentTiddler>is[tiddler]then[tc-tiddler-exists]] [<currentTiddler>is[
missing]!is[shadow]then[tc-tiddler-missing]] [<currentTiddler>is[shadow]then
[tc-tiddler-exists tc-tiddler-shadow]] [<currentTiddler>is[system]then[tc-
tiddler-system]] [{!!class}] [<currentTiddler>tags[]encodeuricomponent[]
addprefix[tc-tagged-]] +[join[ ]] }}}>*<**$list
filter="[all[shadows+tiddlers]tag[$:/tags/ViewTemplate]!has[draft.of]]"
variable="listItem"**>*<$transclude tiddler=<<listItem>>/></$list>
</div>
</$vars>
See how the underlined list widget brings in all items tagged
*$:/tags/ViewTemplate*
So you can change this to only include what you want
But I do not think that is where you are?
Regards
Tony
On Sunday, January 12, 2020 at 11:22:47 AM UTC+11, TonyM wrote:
>
> Siniy,
>
> find the template used to generate static html output and modify that to
> emphasise the title. I did this in the past to make A sidebar free static
> page.
>
> With a little more work tiddlywiki could generate almost any html page.
>
> Let me know if you need more info
>
> Toby
>
>
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/1109e083-86e1-48a9-99ed-a60ec56e91ea%40googlegroups.com.