enum

Cmark::Extension

Inherits Enum < Comparable < Value < Object

A flag enum to enable GFM extensions for node parsing and rendering.

You can easily combine options like this:

extensions = Extension.flags(Table, Autolink)

Constants

Table = 1
Strikethrough = 2
Autolink = 4
Tagfilter = 8
Tasklist = 16
None = 0
All = 31

Instance methods

none?
Source
strikethrough?

Returns true if this enum value contains Strikethrough

Source
table?

Returns true if this enum value contains Table

Source
tagfilter?

Returns true if this enum value contains Tagfilter

Source
tasklist?

Returns true if this enum value contains Tasklist

Source