├── .bundle └── config ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .rspec ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── bin └── biteydown ├── cv-css-selectors.png ├── example └── curriculum.md ├── lib ├── biteydown.rb ├── converter.rb ├── filepath.rb └── markup.rb ├── spec ├── lib │ └── biteydown_spec.rb └── spec_helper.rb └── style ├── empty.css └── style.css /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_WITHOUT: "production" 3 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoherrero/biteydown/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoherrero/biteydown/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format progress 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoherrero/biteydown/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoherrero/biteydown/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoherrero/biteydown/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoherrero/biteydown/HEAD/README.md -------------------------------------------------------------------------------- /bin/biteydown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoherrero/biteydown/HEAD/bin/biteydown -------------------------------------------------------------------------------- /cv-css-selectors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoherrero/biteydown/HEAD/cv-css-selectors.png -------------------------------------------------------------------------------- /example/curriculum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoherrero/biteydown/HEAD/example/curriculum.md -------------------------------------------------------------------------------- /lib/biteydown.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoherrero/biteydown/HEAD/lib/biteydown.rb -------------------------------------------------------------------------------- /lib/converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoherrero/biteydown/HEAD/lib/converter.rb -------------------------------------------------------------------------------- /lib/filepath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoherrero/biteydown/HEAD/lib/filepath.rb -------------------------------------------------------------------------------- /lib/markup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoherrero/biteydown/HEAD/lib/markup.rb -------------------------------------------------------------------------------- /spec/lib/biteydown_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoherrero/biteydown/HEAD/spec/lib/biteydown_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoherrero/biteydown/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /style/empty.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoherrero/biteydown/HEAD/style/style.css --------------------------------------------------------------------------------