SimonFairbairn / SwiftyMarkdown

Converts Markdown files and strings into NSAttributedStrings with lots of customisation options.
MIT License
1.63k stars 269 forks source link

Question: Styling bullets #70

Closed spike-hue closed 4 years ago

spike-hue commented 4 years ago

Question

I want to style the bullet points.

  1. Can I change the size of this bullet? I want it to be a larger dot
  2. Can I make this entire paragraph indent so that it does not wrap underneath the bullet? Right not in the picture below, you'll see that the text on the second and third lines do not indent with the bullet

Example:

Screen Shot 2020-01-29 at 11 21 05 AM
SimonFairbairn commented 4 years ago

SwiftyMarkdown 1.0.2 adds a bullet property that will allow you to choose whatever character(s) you want for the bullet style. It also correctly indents bulleted lists (and blockquotes, which had the same issue).

spike-hue commented 4 years ago

Thank you!