1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-09-12 15:56:05 +00:00

Fixed illegal HTML comments

Pointed out by @Skeeve, double hyphens are not allowed inside HTML
comments
This commit is contained in:
Jermolene
2013-12-20 18:22:01 +00:00
parent bd80bf4acc
commit c740792105
2 changed files with 10 additions and 10 deletions

View File

@@ -6,7 +6,7 @@ title: $:/core/templates/store.area.template.html
`</div>` `</div>`
</$reveal> </$reveal>
<$reveal type="match" state="$:/isEncrypted" text="yes"> <$reveal type="match" state="$:/isEncrypted" text="yes">
`<!------------- Encrypted tiddlers --------->` `<!--~~ Encrypted tiddlers ~~-->`
`<pre id="encryptedStoreArea" type="text/plain" style="display:none;">` `<pre id="encryptedStoreArea" type="text/plain" style="display:none;">`
<$encrypt filter=<<saveTiddlerFilter>>/> <$encrypt filter=<<saveTiddlerFilter>>/>
`</pre>` `</pre>`

View File

@@ -16,37 +16,37 @@ title: $:/core/templates/tiddlywiki5.html
<meta name="copyright" content="{{$:/core/copyright.txt}}" /> <meta name="copyright" content="{{$:/core/copyright.txt}}" />
<link rel="shortcut icon" href="favicon.ico"> <link rel="shortcut icon" href="favicon.ico">
<title>{{$:/core/wiki/title}}</title> <title>{{$:/core/wiki/title}}</title>
<!----------- This is a Tiddlywiki file. The points of interest in the file are marked with this pattern -----------> <!--~~ This is a Tiddlywiki file. The points of interest in the file are marked with this pattern ~~-->
<!----------- Raw markup -----------> <!--~~ Raw markup ~~-->
{{{ [tag[$:/core/wiki/rawmarkup]] ||$:/core/templates/plain-text-tiddler}}} {{{ [tag[$:/core/wiki/rawmarkup]] ||$:/core/templates/plain-text-tiddler}}}
</head> </head>
<body class="tw-body"> <body class="tw-body">
<!----------- Static styles -----------> <!--~~ Static styles ~~-->
<div id="styleArea"> <div id="styleArea">
{{{ [is[system]type[text/css]] ||$:/core/templates/css-tiddler}}} {{{ [is[system]type[text/css]] ||$:/core/templates/css-tiddler}}}
</div> </div>
<!----------- Static content for Google and browsers without JavaScript -----------> <!--~~ Static content for Google and browsers without JavaScript ~~-->
<noscript> <noscript>
<div id="splashArea"> <div id="splashArea">
{{$:/core/templates/static.area}} {{$:/core/templates/static.area}}
</div> </div>
</noscript> </noscript>
<!----------- Ordinary tiddlers -----------> <!--~~ Ordinary tiddlers ~~-->
{{$:/core/templates/store.area.template.html}} {{$:/core/templates/store.area.template.html}}
<!----------- Library modules -----------> <!--~~ Library modules ~~-->
<div id="libraryModules" style="display:none;"> <div id="libraryModules" style="display:none;">
{{{ [is[system]type[application/javascript]library[yes]] ||$:/core/templates/javascript-tiddler}}} {{{ [is[system]type[application/javascript]library[yes]] ||$:/core/templates/javascript-tiddler}}}
</div> </div>
<!----------- Boot kernel prologue -----------> <!--~~ Boot kernel prologue ~~-->
<div id="bootKernelPrefix" style="display:none;"> <div id="bootKernelPrefix" style="display:none;">
{{ $:/boot/bootprefix.js ||$:/core/templates/javascript-tiddler}} {{ $:/boot/bootprefix.js ||$:/core/templates/javascript-tiddler}}
</div> </div>
<!----------- Plugin modules -----------> <!--~~ Plugin modules ~~-->
<div id="modules" style="display:none;"> <div id="modules" style="display:none;">
{{{ [is[system]type[application/javascript]has[module-type]] ||$:/core/templates/module-tiddler}}} {{{ [is[system]type[application/javascript]has[module-type]] ||$:/core/templates/module-tiddler}}}
</div> </div>
<!----------- Boot kernel -----------> <!--~~ Boot kernel ~~-->
<div id="bootKernel" style="display:none;"> <div id="bootKernel" style="display:none;">
{{ $:/boot/boot.js ||$:/core/templates/javascript-tiddler}} {{ $:/boot/boot.js ||$:/core/templates/javascript-tiddler}}
</div> </div>