Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Robert Bachmann
AsciiDoc Language
Commits
f8bcc1ba
Commit
f8bcc1ba
authored
Dec 09, 2020
by
Dan Allen
Browse files
resolves #21 document where anchor must be placed for item in dlist (PR #22)
parent
ed694f82
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/attributes/examples/id.adoc
View file @
f8bcc1ba
...
...
@@ -27,11 +27,19 @@ anchor:bookmark-c[]Use a cross reference to link to this location.
[[anchor-point]]* list item text
// end::anchor-wrong[]
// tag::anchor-list[]
// tag::anchor-list
-item
[]
* First item
* [[step2]]Second item
* Third item
// end::anchor-list[]
// end::anchor-list-item[]
// tag::anchor-dlist-item[]
[[cpu,CPU]]Central Processing Unit (CPU)::
The brain of the computer.
[[hard-drive]]Hard drive::
Permanent storage for operating system and/or user files.
// end::anchor-dlist-item[]
// tag::anchor-header[]
=== Version 4.9 [[version-4_9]]
...
...
modules/attributes/pages/ids.adoc
View file @
f8bcc1ba
...
...
@@ -114,7 +114,7 @@ The anchors in the text get replaced with invisible anchor points in the output.
For example, you would not put an anchor in front of a list item:
.
Wrong
position for an anchor ID in front of a list item
.
.
Incorrect
position for an anchor ID in front of a list item
[source]
----
include::example$id.adoc[tag=anchor-wrong]
...
...
@@ -125,7 +125,15 @@ Instead, you would put it at the very start of the text of the list item:
.Define an inline anchor on a list item
[source]
----
include::example$id.adoc[tag=anchor-list]
include::example$id.adoc[tag=anchor-list-item]
----
For a description list, the anchor must be placed at the start of the term:
.Define an inline anchor on a description list item
[source]
----
include::example$id.adoc[tag=anchor-dlist-item]
----
Here's how you can define the ID for a section using an inline anchor:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment