├── .gitignore ├── History.md ├── Makefile ├── Readme.md ├── bin └── marc ├── component.json ├── index.js ├── package.json └── test ├── api.js ├── browser ├── index.html ├── marc.js └── mocha │ ├── mocha.css │ └── mocha.js ├── markdown.js ├── markdown ├── amy.html └── basic.md ├── options.js └── partials.js /.gitignore: -------------------------------------------------------------------------------- 1 | components 2 | node_modules 3 | build 4 | -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bredele/marc/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bredele/marc/HEAD/Readme.md -------------------------------------------------------------------------------- /bin/marc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bredele/marc/HEAD/bin/marc -------------------------------------------------------------------------------- /component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bredele/marc/HEAD/component.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bredele/marc/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bredele/marc/HEAD/package.json -------------------------------------------------------------------------------- /test/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bredele/marc/HEAD/test/api.js -------------------------------------------------------------------------------- /test/browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bredele/marc/HEAD/test/browser/index.html -------------------------------------------------------------------------------- /test/browser/marc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bredele/marc/HEAD/test/browser/marc.js -------------------------------------------------------------------------------- /test/browser/mocha/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bredele/marc/HEAD/test/browser/mocha/mocha.css -------------------------------------------------------------------------------- /test/browser/mocha/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bredele/marc/HEAD/test/browser/mocha/mocha.js -------------------------------------------------------------------------------- /test/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bredele/marc/HEAD/test/markdown.js -------------------------------------------------------------------------------- /test/markdown/amy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bredele/marc/HEAD/test/markdown/amy.html -------------------------------------------------------------------------------- /test/markdown/basic.md: -------------------------------------------------------------------------------- 1 | I am using __markdown__. -------------------------------------------------------------------------------- /test/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bredele/marc/HEAD/test/options.js -------------------------------------------------------------------------------- /test/partials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bredele/marc/HEAD/test/partials.js --------------------------------------------------------------------------------