Reputation: 2861
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
Reputation: 9320
You could also try text_spec()
e.g.
`r kableExtra::text_spec("• my first bullet, • my second bullet")`
Upvotes: 1
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 <br> - Two <br> - Tree
Live examples:
Upvotes: 1