About RelayUI
Installation
Contributing

Components

BadgesButtonsCode BlocksHeadingsLinksListsMarkdownNavigationSlideoutsText

Coming Soon

AccordionsComing Soon
AlertsComing Soon
CardsComing Soon
FormsComing Soon
Profile ImagesComing Soon
SnackbarsComing Soon
TablesComing Soon

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

  1. Here's a list item
  2. Here's another list item
  3. 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