Module: Commonmarker::Config
- Extended by:
- Utils
- Defined in:
- lib/commonmarker/config.rb
Constant Summary collapse
- OPTIONS =
{ parse: { smart: false, default_info_string: "", relaxed_tasklist_matching: false, relaxed_autolinks: false, }.freeze, render: { hardbreaks: true, github_pre_lang: true, full_info_string: false, width: 80, unsafe: false, escape: false, sourcepos: false, escaped_char_spans: true, ignore_setext: false, ignore_empty_links: false, gfm_quirks: false, prefer_fenced: false, }.freeze, extension: { strikethrough: true, tagfilter: true, table: true, autolink: true, tasklist: true, superscript: false, header_ids: "", footnotes: false, description_lists: false, front_matter_delimiter: "", multiline_block_quotes: false, math_dollars: false, math_code: false, shortcodes: true, wikilinks_title_before_pipe: false, wikilinks_title_after_pipe: false, underline: false, spoiler: false, greentext: false, }, format: [:html].freeze, }.freeze
- PLUGINS =
{ syntax_highlighter: { theme: "base16-ocean.dark", path: "", }, }
Constants included from Constants
Commonmarker::Constants::BOOLS
Class Method Summary collapse
- .merged_with_defaults(options) ⇒ Object
- .process_options(options) ⇒ Object
- .process_plugins(plugins) ⇒ Object
Methods included from Utils
Class Method Details
.merged_with_defaults(options) ⇒ Object
62 63 64 |
# File 'lib/commonmarker/config.rb', line 62 def merged_with_defaults() Commonmarker::Config::OPTIONS.merge(()) end |
.process_options(options) ⇒ Object
66 67 68 69 70 71 72 |
# File 'lib/commonmarker/config.rb', line 66 def () { parse: ([:parse]), render: ([:render]), extension: ([:extension]), } end |
.process_plugins(plugins) ⇒ Object
74 75 76 77 78 |
# File 'lib/commonmarker/config.rb', line 74 def process_plugins(plugins) { syntax_highlighter: process_syntax_highlighter_plugin(plugins&.fetch(:syntax_highlighter, nil)), } end |