kopia lustrzana https://github.com/miklobit/TiddlyWiki5
Minor fixes for #2473
rodzic
80256b4dab
commit
b2c6c24771
|
@ -12,7 +12,7 @@ table-border: #ccc
|
|||
...
|
||||
```
|
||||
|
||||
Several palettes form part of the core. The system tiddler [[$:/palette]] always contains the title of the currently selected palette tiddler. You can change a palette to use {{$:/core/images/palette}} ''palette'' button, found on the "Tools" tab in the sidebar.
|
||||
Several palettes form part of the core. The system tiddler [[$:/palette]] always contains the title of the currently selected palette tiddler. You can change a palette using the {{$:/core/images/palette}} ''palette'' button, found on the "Tools" tab in the sidebar.
|
||||
|
||||
To retrieve the value of a named colour from the current palette, e.g. for use in a stylesheet tiddler, use the <<.mlink colour>> macro:
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ If the target tiddler isn't present in the story list then it is automatically i
|
|||
|
||||
It is also possible to specify a story filter without specifying a target tiddler for navigation:
|
||||
|
||||
<a href="http://tiddlywiki.com/#:[tags[task]]" rel="noreferrer">~http://tiddlywiki.com/#:[tags[task]]</a>
|
||||
<a href="http://tiddlywiki.com/#:[tags[task]]" rel="noopener noreferrer">~http://tiddlywiki.com/#:[tags[task]]</a>
|
||||
|
||||
! About URL encoding
|
||||
|
||||
|
|
|
@ -4,4 +4,4 @@ list: [[Make the beds]]
|
|||
modified: 201606011653
|
||||
title: task
|
||||
|
||||
//This is a sample tasks for the TaskManagementExample//
|
||||
//This tag identifies the tasks for the TaskManagementExample//
|
||||
|
|
|
@ -29,7 +29,7 @@ See also:
|
|||
|
||||
If the button doesn't work save this link:
|
||||
|
||||
<a href="http://tiddlywiki.com/index.html" download="index.html" rel="noreferrer">~http://tiddlywiki.com/index.html</a>
|
||||
<a href="http://tiddlywiki.com/index.html" download="index.html" rel="noopener noreferrer">~http://tiddlywiki.com/index.html</a>
|
||||
|
||||
Your browser may ask you to accept the download before it begins
|
||||
<<<
|
||||
|
|
|
@ -26,7 +26,7 @@ The first RenderTiddlersCommand generates the HTML representations of individual
|
|||
|
||||
It is also possible to produce a single HTML file that contains static representations of tiddlers, and uses standard HTML anchor links to jump between them.
|
||||
|
||||
For example: [ext[[alltiddlers.html]]
|
||||
For example: [ext[alltiddlers.html]]
|
||||
|
||||
The example is built by the following commands:
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ type: text/vnd.tiddlywiki
|
|||
|
||||
!! Language Plugins
|
||||
|
||||
The core TiddlyWiki user interface is available in over 20 languages. You can install language plugins using the plugin manager under the [[control panel|$:/ControlPanel]] {{$:/core/images/options-button}} ''plugins'' tab. You can change a language to use ''language'' button, found on the "Tools" tab in the sidebar.
|
||||
The core TiddlyWiki user interface is available in over 20 languages. You can install language plugins using the plugin manager under the [[control panel|$:/ControlPanel]] {{$:/core/images/options-button}} ''plugins'' tab. You can change the current language using the ''language'' button, found on the "Tools" tab in the sidebar.
|
||||
|
||||
You can contribute a new language to the library by learning how to [[translate TiddlyWiki into your language|Translate TiddlyWiki into your language]].
|
||||
|
||||
|
|
|
@ -9,14 +9,14 @@ The AndTidWiki app for Android devices makes it possible to edit and save change
|
|||
Instructions for use:
|
||||
|
||||
# [[Download]] an empty TiddlyWiki on another web browser
|
||||
# Move the file you just downloaded to directory `/sdcard/andtidwiki`
|
||||
# Move the file you just downloaded to the directory `/sdcard/andtidwiki`
|
||||
#* You may rename it, but be sure to keep the `.html` or `.htm` extension
|
||||
# Open AndTidWiki
|
||||
#* Don't use ''Menu''/''new ~TiddlyWiki'' menu option then AndTidWiki is made iTW formatted TiddlyWikiClassic
|
||||
# Open the file to touch its filename
|
||||
#* Don't use ''Menu''/''new ~TiddlyWiki'' menu option (it only supports the older TiddlyWikiClassic)
|
||||
# Open the file by touching its filename
|
||||
# Try creating a new tiddler using the ''new tiddler'' {{$:/core/images/new-button}} button in the sidebar. Type some content for the tiddler, and click the {{$:/core/images/done-button}} ''ok'' button
|
||||
#* Wiki will be saved, and a confirmation message should appear at the top right of the window
|
||||
#* The wiki will be saved, and a confirmation message should appear at the top right of the window
|
||||
|
||||
''Note:'' Save your changes by clicking the {{$:/core/images/save-button}} ''save changes'' button in the sidebar if you not click {{$:/core/images/done-button}} ''ok'' button
|
||||
''Note:'' You can save your changes by clicking the {{$:/core/images/save-button}} ''save changes'' button in the sidebar even if you have not clicked the {{$:/core/images/done-button}} ''ok'' button to complete editing a tiddler
|
||||
|
||||
//Note that AndTidWiki is published independently of TiddlyWiki//
|
|
@ -23,15 +23,15 @@ The content of an HTML element will be parsed in inline mode unless the opening
|
|||
Attributes in HTML tags can be specified as a literal, a transclusion or a macro invocation. For example, here the value of the `href` attribute will be set to the value of the tiddler MyLinkDestination:
|
||||
|
||||
```
|
||||
<a href={{MyLinkDestination}} rel="noreferrer">link</a>
|
||||
<a href={{MyLinkDestination}} rel="noopener noreferrer">link</a>
|
||||
```
|
||||
|
||||
Note that the link should be set a value of the `rel` attribute is had `noreferrer` to maintain the secrecy of URLs of private TiddlyWiki's (eg on Dropbox).
|
||||
Note that the link should have the `rel` attribute set to `noopener noreferrer` to maintain privacy of the URLs of private TiddlyWiki's (eg on Dropbox). See https://mathiasbynens.github.io/rel-noopener/ for more information.
|
||||
|
||||
Here an attribute is specified as a macro invocation:
|
||||
|
||||
```
|
||||
<a href=<<MyMacro "Brian">> rel="noreferrer">link</a>
|
||||
<a href=<<MyMacro "Brian">> rel="noopener noreferrer">link</a>
|
||||
```
|
||||
|
||||
Literal attribute values can include line breaks. For example:
|
||||
|
|
|
@ -14,7 +14,7 @@ Images can be included in WikiText with the following syntax:
|
|||
[img[http://tiddlywiki.com/favicon.ico]]
|
||||
```
|
||||
|
||||
You can also insert images from toolbar. Click ''picture'' ({{$:/core/images/picture}}) and just select a picture.
|
||||
You can also insert images from the editor toolbar. Click ''picture'' ({{$:/core/images/picture}}) and select a picture file.
|
||||
|
||||
If the image source is the title of an image tiddler then that tiddler is directly displayed. Otherwise it is interpreted as a URL and an HTML `<img>` tag is generated with the `src` attribute containing the URL.
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ To link to a tiddler and specify the text of the link:
|
|||
[[Displayed Link Title|Tiddler Title]]
|
||||
```
|
||||
|
||||
You can also create link from toolbar. Click ''link'' ({{$:/core/images/link}}), and search and select a tiddler.
|
||||
You can also create a link from the editor toolbar. Click ''link'' ({{$:/core/images/link}}), and search and select a tiddler.
|
||||
|
||||
! ~CamelCase Links
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue