created: 20131205160816081 modified: 20141018181414011 tags: WikiText title: HTML in WikiText type: text/vnd.tiddlywiki caption: HTML HTML tags and comments can be used directly in WikiText. For example: ```
This is my nice and simple block of text. HelloThere
``` ! Content Parsing The content of an HTML element will be parsed in inline mode unless the opening tag is followed by two linebreaks, in which case it is parsed in block mode. (Inline mode means that block mode formatting such as tables, lists and headings is not recognised). ! Attributes 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: ``` link ``` Here an attribute is specified as a macro invocation: ``` >>link ``` Literal attribute values can include line breaks. For example: ```
``` By using triple-double quotes you can specify attribute values that include single double quotes. For example: ```
```