1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-25 23:03:15 +00:00

Docs fixes

Thanks @pmario
This commit is contained in:
Jeremy Ruston 2013-11-01 15:00:43 +00:00
parent 1d0eed6957
commit 80e4ab9676
2 changed files with 8 additions and 1 deletions

View File

@ -30,7 +30,6 @@ The following additional features are planned or under consideration for impleme
* Proper use of ARIA roles
* Simpler upgrading to new core versions
* Import wizard allowing individual tiddlers to be selected for import
* Switching to more [[MarkDown-like]] syntax for basic formatting such as headings and lists
* `[img[url]]` for remote image embedding, and `[ext[url]]` for explicit external links
* Further WikiText features including block quotes
* Facebook, Twitter, G+ and LinkedIn widgets

View File

@ -15,8 +15,16 @@ For example, a macro called `italicise` that takes a single parameter called `te
<<italicise "Text to be made into italics">>
<<italicise text:"Text to be made into italics">>
<$macrocall $name="italicise" text="Text to be made into italics"/>
<$macrocall $name="italicise" text={{Title of tiddler containing text to be italicised}}/>
<$macrocall $name="italicise" text=<<textMaker "Another macro to generate the text to be italicised">>/>
```
You can see several examples of the macro call widget within the core:
* Listing module information: [[$:/snippets/modules]]
* Listing field information: [[$:/snippets/allfields]]
* Generating `data:` URIs: [[$:/themes/tiddlywiki/starlight/styles.tid]]
! Content and Attributes
The content of the `<$macrocall>` widget is ignored.