Docs update

This commit is contained in:
Jermolene
2014-06-19 12:37:54 +01:00
parent 0c48502e8e
commit f3a466ee86
4 changed files with 47 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
created: 20131205160816081
modified: 20140220203440064
modified: 20140619111725471
tags: wikitext
title: HTML in WikiText
type: text/vnd.tiddlywiki
@@ -27,6 +27,24 @@ Here an attribute is specified as a macro invocation:
<a href=<<MyMacro "Brian">>>link</a>
```
Literal attribute values can include line breaks. For example:
```
<div data-address="Mouse House,
Mouse Lane,
Rodentville,
Ratland."/>
```
By using triple-double quotes you can specify attribute values that include single double quotes. For example:
```
<div data-address="""Mouse House,
"Mouse" Lane,
Rodentville,
Ratland."""/>
```
! Content Parsing
The content of an HTML element will be parsed in inline mode unless the opening tag is followed by two linebreaks. (Inline mode means that block mode formatting such as tables, lists and headings is not recognised).