├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── octopress-quote-tag.rb └── octopress-quote-tag │ ├── utils.rb │ └── version.rb ├── octopress-quote-tag.gemspec └── test ├── Gemfile ├── _clash.yml ├── _config.yml ├── _expected ├── index.html ├── markdown.html └── textile.html ├── index.html ├── markdown.md └── textile.textile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /lib/octopress-quote-tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/lib/octopress-quote-tag.rb -------------------------------------------------------------------------------- /lib/octopress-quote-tag/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/lib/octopress-quote-tag/utils.rb -------------------------------------------------------------------------------- /lib/octopress-quote-tag/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/lib/octopress-quote-tag/version.rb -------------------------------------------------------------------------------- /octopress-quote-tag.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/octopress-quote-tag.gemspec -------------------------------------------------------------------------------- /test/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/test/Gemfile -------------------------------------------------------------------------------- /test/_clash.yml: -------------------------------------------------------------------------------- 1 | build: true 2 | compare: _expected _site 3 | -------------------------------------------------------------------------------- /test/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/test/_config.yml -------------------------------------------------------------------------------- /test/_expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/test/_expected/index.html -------------------------------------------------------------------------------- /test/_expected/markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/test/_expected/markdown.html -------------------------------------------------------------------------------- /test/_expected/textile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/test/_expected/textile.html -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/test/index.html -------------------------------------------------------------------------------- /test/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/test/markdown.md -------------------------------------------------------------------------------- /test/textile.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octopress/quote-tag/HEAD/test/textile.textile --------------------------------------------------------------------------------