Here are a few of the styles that Doxter applies to your content:
To apply typography styles, make sure to enable addTypographyStyles
from plugin settings page. That will tell Doxter to apply typography styles to all your content inside Doxter fields, when rendered.
Alternatively, see the following section on filters
If the content you want to convert is not stored in a Doxter field, you can use one of the provided filters for on the fly conversion.
{% set markdownString = "# Better typography out of the box" %}
{{ markdownString | doxter( { addTypographyStyles: true ) }}
{% set plainText = "I'm in love with typography. --Selvin Ortiz" %}
{{ plainText | doxterTypography() }}