false, /* |-------------------------------------------------------------------------- | CommonMark Extenstions |-------------------------------------------------------------------------- | | This option specifies what extensions will be automatically enabled. | Simply provide your extension class names here. | | Default: [] | */ 'extensions' => array_filter([ env('CACHET_EMOJI', false) ? 'AltThree\Emoji\EmojiExtension' : null, env('CACHET_AUTO_TWITTER', true) ? 'AltThree\Twitter\TwitterExtension' : null, ]), /* |-------------------------------------------------------------------------- | Renderer Configuration |-------------------------------------------------------------------------- | | This option specifies an array of options for rendering HTML. | | Default: [ | 'block_separator' => "\n", | 'inner_separator' => "\n", | 'soft_break' => "\n", | ] | */ 'renderer' => [ 'block_separator' => "\n", 'inner_separator' => "\n", 'soft_break' => "\n\n", ], /* |-------------------------------------------------------------------------- | Enable Em Tag Parsing |-------------------------------------------------------------------------- | | This option specifies if `` parsing is enabled. | | Default: true | */ 'enable_em' => true, /* |-------------------------------------------------------------------------- | Enable Strong Tag Parsing |-------------------------------------------------------------------------- | | This option specifies if `` parsing is enabled. | | Default: true | */ 'enable_strong' => true, /* |-------------------------------------------------------------------------- | Enable Asterisk Parsing |-------------------------------------------------------------------------- | | This option specifies if `*` should be parsed for emphasis. | | Default: true | */ 'use_asterisk' => true, /* |-------------------------------------------------------------------------- | Enable Underscore Parsing |-------------------------------------------------------------------------- | | This option specifies if `_` should be parsed for emphasis. | | Default: true | */ 'use_underscore' => true, /* |-------------------------------------------------------------------------- | Safe Mode |-------------------------------------------------------------------------- | | This option specifies if raw HTML is rendered in the document. Setting | this to true will not render HTML, and false will. | | Default: false | */ 'safe' => true, ];