Docs: fix typo (#3949)

This commit is contained in:
Kartik Saranathan 2019-05-16 12:28:09 -04:00 committed by Jeremy Ruston
parent 184fd9dda8
commit ba0da99b17
3 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ The ~TiddlyWiki core adds several `attributes` to the rendered content. With tho
For example this tiddler is named: "{{!!title}}" so the attribute looks like this:
```
data-tiddler-title="Custom styles by title"
data-tiddler-title="Custom styles by data-tiddler-title"
```
!! Examples
@ -21,7 +21,7 @@ data-tiddler-title="Custom styles by title"
The following CSS is defined in [[Custom data-styles]] and creates a blue border for exactly this tiddler.
```
[data-tiddler-title="Custom styles by title"] {
[data-tiddler-title="Custom styles by data-tiddler-title"] {
border: 1px solid blue;
}
```

View File

@ -4,7 +4,7 @@ tags: data-tags-styles [[How to apply custom styles]] $:/tags/Stylesheet
title: Custom data-styles
type: text/vnd.tiddlywiki
[data-tiddler-title="Custom styles by title"] {
[data-tiddler-title="Custom styles by data-tiddler-title"] {
border: 1px solid blue;
}

View File

@ -1,5 +1,5 @@
created: 20141001132300000
list: [[Custom styles by data-tags]] [[Custom styles by title]]
list: [[Custom styles by data-tags]] [[Custom styles by data-tiddler-title]]
modified: 201804111740
tags: [[Customise TiddlyWiki]]
title: How to apply custom styles