You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.1 KiB
68 lines
1.1 KiB
+++ |
|
title = "Plain lists with ATTR_HTML" |
|
tags = ["lists", "attr_html", "attr_css", "custom-counter"] |
|
draft = false |
|
+++ |
|
|
|
## Unordered lists {#unordered-lists} |
|
|
|
<style>.red-text { color: red; }</style> |
|
|
|
<div class="red-text"> |
|
<div></div> |
|
|
|
- Red list item 1 |
|
- Red list item 2 |
|
|
|
</div> |
|
<!--listend--> |
|
|
|
<style>.green-text { color: green; }</style> |
|
|
|
<div class="green-text"> |
|
<div></div> |
|
|
|
- Green list item 1 |
|
- Green list item 2 |
|
|
|
</div> |
|
|
|
|
|
## Ordered lists {#ordered-lists} |
|
|
|
<div class="green-text"> |
|
<div></div> |
|
|
|
1. Green ordered list item 1 |
|
2. Green ordered list item 2 |
|
|
|
</div> |
|
|
|
_The `green-text` style is defined in the list above this one._ |
|
|
|
|
|
### Ordered list with custom counter {#ordered-list-with-custom-counter} |
|
|
|
<style>.blue-text { color: blue; }</style> |
|
|
|
<ol class="org-ol blue-text"> |
|
<li>Blue list item 1</li> |
|
<li>Blue list item 2</li> |
|
<li value="10">Blue list item 10</li> |
|
</ol> |
|
|
|
|
|
## Definition/descriptive lists {#definition-descriptive-lists} |
|
|
|
<div class="red-text"> |
|
<div></div> |
|
|
|
Defn A |
|
: Something A in red |
|
|
|
Defn B |
|
: Something B in red |
|
|
|
</div> |
|
|
|
_The `red-text` style is defined in the first list above._
|
|
|