1

I am trying to make an inline bullet.

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

The expected Answer is an inline version of this.

Seyma Kalay
  • 2,037
  • 10
  • 22
  • 2
    Does this answer your question? [Bootstrap: list-inline with bullets?](https://stackoverflow.com/questions/25353955/bootstrap-list-inline-with-bullets) – manro Sep 07 '22 at 12:12

2 Answers2

1

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
F4NT0
  • 773
  • 7
  • 16
1

You could also try text_spec() e.g.

`r kableExtra::text_spec("• my first bullet,  • my second bullet")` 
Julian
  • 6,586
  • 2
  • 9
  • 33