Skip to content

Commit ce2bc4c

Browse files
authored
Merge pull request #25 from atuttle/bugfix/emoji-transform
Prevent unintended emoji transforms by adding the docsify emoji plugin
2 parents 05c0ed2 + f5033a4 commit ce2bc4c

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

src/3.2.0.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ Metadata is used to apply configuration in a concise and elegant manor, where ne
210210

211211
Resources are CFCs that interpret a request and provide or update the requested data.
212212

213-
##### taffy : dashboard : hide
213+
##### taffy:dashboard:hide
214214

215215
If you want a resource not to be included in the dashboard, set `taffy:dashboard:hide` on the component:
216216

@@ -228,15 +228,15 @@ component taffy_uri="/secret-squirrel" taffy_dashboard_hide {
228228

229229
Note that while some more recent versions of Adobe ColdFusion do allow colons in component metadata property names (e.g. `taffy:uri`), some versions still do not support multiple colons, as in `taffy:dashboard:hide`. For this reason, we also support `taffy_dashboard_hide`.
230230

231-
##### taffy : dashboard : name
231+
##### taffy:dashboard:name
232232

233233
You can use this property to change the name of a resource as it appears on the dashboard. By default Taffy will generate a name based on the folder/file structure, but sometimes these names are awkward and you want a human touch.
234234

235-
##### taffy : docs : hide
235+
##### taffy:docs:hide
236236

237237
This property works exactly like `taffy:dashboard:hide`, except it applies to the generated documentation instead of the dashboard.
238238

239-
##### taffy : docs : name
239+
##### taffy:docs:name
240240

241241
This property works exactly like `taffy:dashboard:name`, except it applies to the generated documentation. In addition, the dashboard will fall back to `taffy:docs:name` if there is no `taffy:dashboard:name` set.
242242

@@ -287,7 +287,7 @@ function getUser( numeric userId ) taffy_verb="get" {
287287
}
288288
```
289289

290-
##### taffy : docs : hide
290+
##### taffy:docs:hide
291291

292292
You can prevent a resource from showing in the documentation by adding the `taffy:docs:hide` or `taffy_docs_hide` attribute to the component.
293293

src/3.3.0.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,15 +228,15 @@ component taffy_uri="/secret-squirrel" taffy_dashboard_hide {
228228

229229
Note that while some more recent versions of Adobe ColdFusion do allow colons in component metadata property names (e.g. `taffy:uri`), some versions still do not support multiple colons, as in `taffy:dashboard:hide`. For this reason, we also support `taffy_dashboard_hide`.
230230

231-
##### taffy : dashboard : name
231+
##### taffy:dashboard:name
232232

233233
You can use this property to change the name of a resource as it appears on the dashboard. By default Taffy will generate a name based on the folder/file structure, but sometimes these names are awkward and you want a human touch.
234234

235-
##### taffy : docs : hide
235+
##### taffy:docs:hide
236236

237237
This property works exactly like `taffy:dashboard:hide`, except it applies to the generated documentation instead of the dashboard.
238238

239-
##### taffy : docs : name
239+
##### taffy:docs:name
240240

241241
This property works exactly like `taffy:dashboard:name`, except it applies to the generated documentation. In addition, the dashboard will fall back to `taffy:docs:name` if there is no `taffy:dashboard:name` set.
242242

src/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,6 @@
4141
};
4242
</script>
4343
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
44+
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/emoji.min.js"></script>
4445
</body>
4546
</html>

0 commit comments

Comments
 (0)