Seyma Kalay
Seyma Kalay

Reputation: 2861

inline bullet in rmarkdown

I am trying to make an inline bullet.

* my first bullet, * my second bullet,...

The expected Answer is an inline version of this.

Upvotes: 1

Views: 105

Answers (2)

Julian
Julian

Reputation: 9320

You could also try text_spec() e.g.

`r kableExtra::text_spec("• my first bullet,  • my second bullet")` 

Upvotes: 1

F4NT0
F4NT0

Reputation: 1531

One easy way is to put the <ul> and <li> HTML tags to create a bullet list in one line:

<ul><li>One, <li>Two, <li>Tree<ul>

Live example:

  • One,
  • Two,
  • Tree

Or in multiple lines:
* One <br> - Two <br> - Tree

Live examples:

  • One
    - Two
    - Tree

Upvotes: 1

Related Questions