Lists
To render a list, use the RUI::Markdown
component. For more information, see the RUI::Markdown documentation.
Unordered Lists
- Here's a list item
- Here's another list item
- Here's item #3
render RUI::Markdown::Safe.new do
<<-STRING
- Here's a list item
- Here's another list item
- Here's item #3
STRING
end
Ordered Lists
- Here's a list item
- Here's another list item
- Here's item #3
render RUI::Markdown::Safe.new do
<<-STRING
1. Here's a list item
1. Here's another list item
1. Here's item #3
STRING
end