fix ui macro example error
authorSarah White <graphitefriction@gmail.com>
Thu, 5 Apr 2018 18:39:52 +0000 (12:39 -0600)
committerSarah White <graphitefriction@gmail.com>
Tue, 10 Apr 2018 16:31:36 +0000 (10:31 -0600)
docs/modules/ROOT/pages/style-guide.adoc
docs/modules/ROOT/pages/ui-macro-styles.adoc

index 0c0e72c..94795cd 100644 (file)
@@ -18,8 +18,8 @@ AsciiDoc has numerous content elements that require assistance from CSS to rende
 
 These elements include:
 
-* xref:inline-text-styles.adoc[Emphasized inline text, such as bold, italics, etc.]
+* xref:inline-text-styles.adoc[Inline text emphasis]
 * xref:admonition-styles.adoc[Admonitions]
 * xref:list-styles.adoc[Lists]
 * xref:sidebar-styles.adoc[Sidebars]
-* xref:ui-macro-styles.adoc[Button, Keybinding, and Menu UI Macros]
+* xref:ui-macro-styles.adoc[Button, keybinding, and menu UI macros]
index 7024165..f04e485 100644 (file)
@@ -3,8 +3,6 @@ ifndef::env-site,env-github[]
 include::_attributes.adoc[]
 endif::[]
 
-== UI macro elements
-
 Asciidoctor supports xref:antora:asciidoc:ui-macros.adoc[three UI element representations] out of the box, which are made from corresponding inline UI macros.
 
 * button (btn macro)
@@ -14,7 +12,7 @@ Asciidoctor supports xref:antora:asciidoc:ui-macros.adoc[three UI element repres
 The UI elements are output using semantic HTML elements, so they inherit some default styling from the browser.
 However, to look proper, they require some additional styling.
 
-=== Button
+== Button
 
 A xref:antora:asciidoc:ui-macros.adoc#button[button] is meant to represent an on-screen button (`+btn:[Save]+`).
 However, it should not appear like an actual button as that could confuse the reader into thinking it's interactive.
@@ -29,7 +27,7 @@ Traditionally, a button reference is styled by surrounding the text with square
 
 btn:[Save]
 
-=== Keybinding
+== Keybinding
 
 A xref:antora:asciidoc:ui-macros.adoc#keybinding[keybinding] can be a single key (`+kbd:[F11]+`) or a sequence of keys (`+kbd:[Ctrl+F]`).
 Here's the HTML that's generated for these two forms.
@@ -46,7 +44,7 @@ Here's how these might appear:
 kbd:[F11]
 kbd:[Ctrl+F]
 
-=== Menu
+== Menu
 
 A xref:antora:asciidoc:ui-macros.adoc#menu[menu] can be a top-level menu reference (`+menu:File[]+`) or a nested selection (`+menu:File[Save]+`).
 Here's the HTML that's generated for these two forms.
@@ -59,8 +57,8 @@ Here's the HTML that's generated for these two forms.
 
 This might be rendered as:
 
-[%hardbreaks]
 menu:File[]
+
 menu:File[Save]
 
 The default styling applied to a menu reference is usually sufficient.