├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .rspec ├── .ruby-version ├── .travis.yml ├── .travis └── motion_setup.sh ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── benchmark ├── mdbasics.text └── mdsyntax.text ├── lib ├── motion-markdown-it.rb └── motion-markdown-it │ ├── common │ ├── entities.rb │ ├── html_blocks.rb │ ├── html_re.rb │ ├── simpleidn.rb │ └── utils.rb │ ├── helpers │ ├── helper_wrapper.rb │ ├── parse_link_destination.rb │ ├── parse_link_label.rb │ └── parse_link_title.rb │ ├── index.rb │ ├── parser_block.rb │ ├── parser_core.rb │ ├── parser_inline.rb │ ├── presets │ ├── commonmark.rb │ ├── default.rb │ └── zero.rb │ ├── renderer.rb │ ├── ruler.rb │ ├── rules_block │ ├── blockquote.rb │ ├── code.rb │ ├── fence.rb │ ├── heading.rb │ ├── hr.rb │ ├── html_block.rb │ ├── lheading.rb │ ├── list.rb │ ├── paragraph.rb │ ├── reference.rb │ ├── state_block.rb │ └── table.rb │ ├── rules_core │ ├── block.rb │ ├── inline.rb │ ├── linkify.rb │ ├── normalize.rb │ ├── replacements.rb │ ├── smartquotes.rb │ ├── state_core.rb │ └── text_join.rb │ ├── rules_inline │ ├── autolink.rb │ ├── backticks.rb │ ├── balance_pairs.rb │ ├── emphasis.rb │ ├── entity.rb │ ├── escape.rb │ ├── fragments_join.rb │ ├── html_inline.rb │ ├── image.rb │ ├── link.rb │ ├── linkify.rb │ ├── newline.rb │ ├── state_inline.rb │ ├── strikethrough.rb │ └── text.rb │ ├── token.rb │ └── version.rb ├── motion-markdown-it.gemspec ├── rubymotion ├── Gemfile ├── Rakefile ├── app │ └── app_delegate.rb └── spec │ ├── motion-markdown-it │ ├── _helpers │ │ └── _testgen_helper.rb │ ├── bench_mark_spec.rb │ ├── commonmark_spec.rb │ ├── markdown_it_spec.rb │ ├── misc_spec.rb │ ├── ruler_spec.rb │ ├── token_spec.rb │ └── utils_spec.rb │ └── spec_helper.rb └── spec ├── motion-markdown-it ├── commonmark_spec.rb ├── fixtures │ ├── commonmark │ │ ├── bad.txt │ │ ├── good.txt │ │ └── spec.txt │ └── markdown-it │ │ ├── commonmark_extras.txt │ │ ├── fatal.txt │ │ ├── linkify.txt │ │ ├── normalize.txt │ │ ├── proto.txt │ │ ├── smartquotes.txt │ │ ├── strikethrough.txt │ │ ├── tables.txt │ │ ├── typographer.txt │ │ └── xss.txt ├── markdown_it_spec.rb ├── misc_spec.rb ├── ruler_spec.rb ├── testgen_helper.rb ├── token_spec.rb └── utils_spec.rb └── spec_helper.rb /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --format documentation 4 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.6 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/motion_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/.travis/motion_setup.sh -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/Rakefile -------------------------------------------------------------------------------- /benchmark/mdbasics.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/benchmark/mdbasics.text -------------------------------------------------------------------------------- /benchmark/mdsyntax.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/benchmark/mdsyntax.text -------------------------------------------------------------------------------- /lib/motion-markdown-it.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/common/entities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/common/entities.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/common/html_blocks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/common/html_blocks.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/common/html_re.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/common/html_re.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/common/simpleidn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/common/simpleidn.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/common/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/common/utils.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/helpers/helper_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/helpers/helper_wrapper.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/helpers/parse_link_destination.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/helpers/parse_link_destination.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/helpers/parse_link_label.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/helpers/parse_link_label.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/helpers/parse_link_title.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/helpers/parse_link_title.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/index.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/parser_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/parser_block.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/parser_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/parser_core.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/parser_inline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/parser_inline.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/presets/commonmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/presets/commonmark.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/presets/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/presets/default.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/presets/zero.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/presets/zero.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/renderer.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/ruler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/ruler.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_block/blockquote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_block/blockquote.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_block/code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_block/code.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_block/fence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_block/fence.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_block/heading.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_block/heading.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_block/hr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_block/hr.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_block/html_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_block/html_block.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_block/lheading.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_block/lheading.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_block/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_block/list.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_block/paragraph.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_block/paragraph.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_block/reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_block/reference.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_block/state_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_block/state_block.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_block/table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_block/table.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_core/block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_core/block.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_core/inline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_core/inline.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_core/linkify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_core/linkify.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_core/normalize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_core/normalize.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_core/replacements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_core/replacements.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_core/smartquotes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_core/smartquotes.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_core/state_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_core/state_core.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_core/text_join.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_core/text_join.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_inline/autolink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_inline/autolink.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_inline/backticks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_inline/backticks.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_inline/balance_pairs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_inline/balance_pairs.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_inline/emphasis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_inline/emphasis.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_inline/entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_inline/entity.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_inline/escape.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_inline/escape.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_inline/fragments_join.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_inline/fragments_join.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_inline/html_inline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_inline/html_inline.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_inline/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_inline/image.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_inline/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_inline/link.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_inline/linkify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_inline/linkify.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_inline/newline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_inline/newline.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_inline/state_inline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_inline/state_inline.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_inline/strikethrough.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_inline/strikethrough.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/rules_inline/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/rules_inline/text.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/lib/motion-markdown-it/token.rb -------------------------------------------------------------------------------- /lib/motion-markdown-it/version.rb: -------------------------------------------------------------------------------- 1 | module MotionMarkdownIt 2 | VERSION = '13.0.1' 3 | end 4 | -------------------------------------------------------------------------------- /motion-markdown-it.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/motion-markdown-it.gemspec -------------------------------------------------------------------------------- /rubymotion/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/rubymotion/Gemfile -------------------------------------------------------------------------------- /rubymotion/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/rubymotion/Rakefile -------------------------------------------------------------------------------- /rubymotion/app/app_delegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/rubymotion/app/app_delegate.rb -------------------------------------------------------------------------------- /rubymotion/spec/motion-markdown-it/_helpers/_testgen_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/rubymotion/spec/motion-markdown-it/_helpers/_testgen_helper.rb -------------------------------------------------------------------------------- /rubymotion/spec/motion-markdown-it/bench_mark_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/rubymotion/spec/motion-markdown-it/bench_mark_spec.rb -------------------------------------------------------------------------------- /rubymotion/spec/motion-markdown-it/commonmark_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/rubymotion/spec/motion-markdown-it/commonmark_spec.rb -------------------------------------------------------------------------------- /rubymotion/spec/motion-markdown-it/markdown_it_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/rubymotion/spec/motion-markdown-it/markdown_it_spec.rb -------------------------------------------------------------------------------- /rubymotion/spec/motion-markdown-it/misc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/rubymotion/spec/motion-markdown-it/misc_spec.rb -------------------------------------------------------------------------------- /rubymotion/spec/motion-markdown-it/ruler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/rubymotion/spec/motion-markdown-it/ruler_spec.rb -------------------------------------------------------------------------------- /rubymotion/spec/motion-markdown-it/token_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/rubymotion/spec/motion-markdown-it/token_spec.rb -------------------------------------------------------------------------------- /rubymotion/spec/motion-markdown-it/utils_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/rubymotion/spec/motion-markdown-it/utils_spec.rb -------------------------------------------------------------------------------- /rubymotion/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/rubymotion/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/motion-markdown-it/commonmark_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/commonmark_spec.rb -------------------------------------------------------------------------------- /spec/motion-markdown-it/fixtures/commonmark/bad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/fixtures/commonmark/bad.txt -------------------------------------------------------------------------------- /spec/motion-markdown-it/fixtures/commonmark/good.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/fixtures/commonmark/good.txt -------------------------------------------------------------------------------- /spec/motion-markdown-it/fixtures/commonmark/spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/fixtures/commonmark/spec.txt -------------------------------------------------------------------------------- /spec/motion-markdown-it/fixtures/markdown-it/commonmark_extras.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/fixtures/markdown-it/commonmark_extras.txt -------------------------------------------------------------------------------- /spec/motion-markdown-it/fixtures/markdown-it/fatal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/fixtures/markdown-it/fatal.txt -------------------------------------------------------------------------------- /spec/motion-markdown-it/fixtures/markdown-it/linkify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/fixtures/markdown-it/linkify.txt -------------------------------------------------------------------------------- /spec/motion-markdown-it/fixtures/markdown-it/normalize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/fixtures/markdown-it/normalize.txt -------------------------------------------------------------------------------- /spec/motion-markdown-it/fixtures/markdown-it/proto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/fixtures/markdown-it/proto.txt -------------------------------------------------------------------------------- /spec/motion-markdown-it/fixtures/markdown-it/smartquotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/fixtures/markdown-it/smartquotes.txt -------------------------------------------------------------------------------- /spec/motion-markdown-it/fixtures/markdown-it/strikethrough.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/fixtures/markdown-it/strikethrough.txt -------------------------------------------------------------------------------- /spec/motion-markdown-it/fixtures/markdown-it/tables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/fixtures/markdown-it/tables.txt -------------------------------------------------------------------------------- /spec/motion-markdown-it/fixtures/markdown-it/typographer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/fixtures/markdown-it/typographer.txt -------------------------------------------------------------------------------- /spec/motion-markdown-it/fixtures/markdown-it/xss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/fixtures/markdown-it/xss.txt -------------------------------------------------------------------------------- /spec/motion-markdown-it/markdown_it_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/markdown_it_spec.rb -------------------------------------------------------------------------------- /spec/motion-markdown-it/misc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/misc_spec.rb -------------------------------------------------------------------------------- /spec/motion-markdown-it/ruler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/ruler_spec.rb -------------------------------------------------------------------------------- /spec/motion-markdown-it/testgen_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/testgen_helper.rb -------------------------------------------------------------------------------- /spec/motion-markdown-it/token_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/token_spec.rb -------------------------------------------------------------------------------- /spec/motion-markdown-it/utils_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/motion-markdown-it/utils_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalmoksha/motion-markdown-it/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------