├── .github └── FUNDING.yml ├── .gitignore ├── .irbrc ├── .tool-versions ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin └── mdless ├── features ├── mdless.feature ├── step_definitions │ └── mdless_steps.rb └── support │ └── env.rb ├── lib ├── mdless.rb └── mdless │ ├── array.rb │ ├── colors.rb │ ├── console.rb │ ├── converter.rb │ ├── emoji.rb │ ├── hash.rb │ ├── string.rb │ ├── tables.rb │ ├── taskpaper.rb │ ├── theme.rb │ └── version.rb ├── mdless.gemspec ├── pushgem.fish ├── screenshots └── mdless.png └── test ├── Byword.md ├── Upcoming.md ├── codeblocks.md ├── default_test.rb ├── del.md ├── emoji.md ├── emphasis.md ├── headlines.md ├── highlight.md ├── lists.md ├── lists2.md ├── marked.gif ├── nvUltraIcon-400.png ├── riot-web.md ├── sections.md ├── table.md ├── taskpaper ├── Test1.md ├── Test2.md └── Test3.md ├── test.rb ├── test_helper.rb └── transclude └── Marked2.6.311054-releasenotes.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/.gitignore -------------------------------------------------------------------------------- /.irbrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/.irbrc -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 3.3.0 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/mdless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/bin/mdless -------------------------------------------------------------------------------- /features/mdless.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/features/mdless.feature -------------------------------------------------------------------------------- /features/step_definitions/mdless_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/features/step_definitions/mdless_steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /lib/mdless.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/lib/mdless.rb -------------------------------------------------------------------------------- /lib/mdless/array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/lib/mdless/array.rb -------------------------------------------------------------------------------- /lib/mdless/colors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/lib/mdless/colors.rb -------------------------------------------------------------------------------- /lib/mdless/console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/lib/mdless/console.rb -------------------------------------------------------------------------------- /lib/mdless/converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/lib/mdless/converter.rb -------------------------------------------------------------------------------- /lib/mdless/emoji.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/lib/mdless/emoji.rb -------------------------------------------------------------------------------- /lib/mdless/hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/lib/mdless/hash.rb -------------------------------------------------------------------------------- /lib/mdless/string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/lib/mdless/string.rb -------------------------------------------------------------------------------- /lib/mdless/tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/lib/mdless/tables.rb -------------------------------------------------------------------------------- /lib/mdless/taskpaper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/lib/mdless/taskpaper.rb -------------------------------------------------------------------------------- /lib/mdless/theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/lib/mdless/theme.rb -------------------------------------------------------------------------------- /lib/mdless/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module CLIMarkdown 4 | VERSION = '2.1.62' 5 | end 6 | -------------------------------------------------------------------------------- /mdless.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/mdless.gemspec -------------------------------------------------------------------------------- /pushgem.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/pushgem.fish -------------------------------------------------------------------------------- /screenshots/mdless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/screenshots/mdless.png -------------------------------------------------------------------------------- /test/Byword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/Byword.md -------------------------------------------------------------------------------- /test/Upcoming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/Upcoming.md -------------------------------------------------------------------------------- /test/codeblocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/codeblocks.md -------------------------------------------------------------------------------- /test/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/default_test.rb -------------------------------------------------------------------------------- /test/del.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/del.md -------------------------------------------------------------------------------- /test/emoji.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/emoji.md -------------------------------------------------------------------------------- /test/emphasis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/emphasis.md -------------------------------------------------------------------------------- /test/headlines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/headlines.md -------------------------------------------------------------------------------- /test/highlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/highlight.md -------------------------------------------------------------------------------- /test/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/lists.md -------------------------------------------------------------------------------- /test/lists2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/lists2.md -------------------------------------------------------------------------------- /test/marked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/marked.gif -------------------------------------------------------------------------------- /test/nvUltraIcon-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/nvUltraIcon-400.png -------------------------------------------------------------------------------- /test/riot-web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/riot-web.md -------------------------------------------------------------------------------- /test/sections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/sections.md -------------------------------------------------------------------------------- /test/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/table.md -------------------------------------------------------------------------------- /test/taskpaper/Test1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/taskpaper/Test1.md -------------------------------------------------------------------------------- /test/taskpaper/Test2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/taskpaper/Test2.md -------------------------------------------------------------------------------- /test/taskpaper/Test3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/taskpaper/Test3.md -------------------------------------------------------------------------------- /test/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/transclude/Marked2.6.311054-releasenotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/mdless/HEAD/test/transclude/Marked2.6.311054-releasenotes.md --------------------------------------------------------------------------------