├── .editorconfig ├── .gitignore ├── .mversionrc ├── CHANGELOG.md ├── README.md ├── bin └── mark ├── index.js ├── package.json ├── public ├── config.js ├── content │ ├── blog │ │ ├── one.en.md │ │ ├── one.ru.md │ │ ├── two.en.md │ │ └── two.ru.md │ ├── index.en.md │ └── index.ru.md ├── favicon.ico ├── i18n.js └── themes │ └── bemark │ ├── header │ ├── header.bemhtml.js │ └── header.deps.js │ ├── page │ └── _layout │ │ ├── page_layout_blog.bemhtml.js │ │ └── page_layout_blog.deps.js │ └── pagination │ └── pagination.bemhtml.js └── src ├── components ├── lang-switcher │ ├── __link │ │ ├── _current │ │ │ └── lang-switcher__link_current.bemhtml.js │ │ └── lang-switcher__link.deps.js │ ├── lang-switcher.bemhtml.js │ └── lang-switcher.deps.js ├── page │ ├── _layout │ │ ├── page_layout_root.bemhtml.js │ │ └── page_layout_root.deps.js │ ├── page.bemhtml.js │ └── page.deps.js └── root │ └── root.bemhtml.js ├── lib ├── cli │ ├── commands │ │ ├── build.js │ │ ├── init.js │ │ └── serve.js │ └── index.js ├── log.js └── posthtml-plugins │ └── semantize.js └── scripts ├── build.js ├── generate.js ├── grab.js └── make.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/.gitignore -------------------------------------------------------------------------------- /.mversionrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/.mversionrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/README.md -------------------------------------------------------------------------------- /bin/mark: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../src/lib/cli/index.js').run(); 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/package.json -------------------------------------------------------------------------------- /public/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/public/config.js -------------------------------------------------------------------------------- /public/content/blog/one.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/public/content/blog/one.en.md -------------------------------------------------------------------------------- /public/content/blog/one.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/public/content/blog/one.ru.md -------------------------------------------------------------------------------- /public/content/blog/two.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/public/content/blog/two.en.md -------------------------------------------------------------------------------- /public/content/blog/two.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/public/content/blog/two.ru.md -------------------------------------------------------------------------------- /public/content/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/public/content/index.en.md -------------------------------------------------------------------------------- /public/content/index.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/public/content/index.ru.md -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/public/i18n.js -------------------------------------------------------------------------------- /public/themes/bemark/header/header.bemhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/public/themes/bemark/header/header.bemhtml.js -------------------------------------------------------------------------------- /public/themes/bemark/header/header.deps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/public/themes/bemark/header/header.deps.js -------------------------------------------------------------------------------- /public/themes/bemark/page/_layout/page_layout_blog.bemhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/public/themes/bemark/page/_layout/page_layout_blog.bemhtml.js -------------------------------------------------------------------------------- /public/themes/bemark/page/_layout/page_layout_blog.deps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/public/themes/bemark/page/_layout/page_layout_blog.deps.js -------------------------------------------------------------------------------- /public/themes/bemark/pagination/pagination.bemhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/public/themes/bemark/pagination/pagination.bemhtml.js -------------------------------------------------------------------------------- /src/components/lang-switcher/__link/_current/lang-switcher__link_current.bemhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/components/lang-switcher/__link/_current/lang-switcher__link_current.bemhtml.js -------------------------------------------------------------------------------- /src/components/lang-switcher/__link/lang-switcher__link.deps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/components/lang-switcher/__link/lang-switcher__link.deps.js -------------------------------------------------------------------------------- /src/components/lang-switcher/lang-switcher.bemhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/components/lang-switcher/lang-switcher.bemhtml.js -------------------------------------------------------------------------------- /src/components/lang-switcher/lang-switcher.deps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/components/lang-switcher/lang-switcher.deps.js -------------------------------------------------------------------------------- /src/components/page/_layout/page_layout_root.bemhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/components/page/_layout/page_layout_root.bemhtml.js -------------------------------------------------------------------------------- /src/components/page/_layout/page_layout_root.deps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/components/page/_layout/page_layout_root.deps.js -------------------------------------------------------------------------------- /src/components/page/page.bemhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/components/page/page.bemhtml.js -------------------------------------------------------------------------------- /src/components/page/page.deps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/components/page/page.deps.js -------------------------------------------------------------------------------- /src/components/root/root.bemhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/components/root/root.bemhtml.js -------------------------------------------------------------------------------- /src/lib/cli/commands/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/lib/cli/commands/build.js -------------------------------------------------------------------------------- /src/lib/cli/commands/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/lib/cli/commands/init.js -------------------------------------------------------------------------------- /src/lib/cli/commands/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/lib/cli/commands/serve.js -------------------------------------------------------------------------------- /src/lib/cli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/lib/cli/index.js -------------------------------------------------------------------------------- /src/lib/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/lib/log.js -------------------------------------------------------------------------------- /src/lib/posthtml-plugins/semantize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/lib/posthtml-plugins/semantize.js -------------------------------------------------------------------------------- /src/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/scripts/build.js -------------------------------------------------------------------------------- /src/scripts/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/scripts/generate.js -------------------------------------------------------------------------------- /src/scripts/grab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/scripts/grab.js -------------------------------------------------------------------------------- /src/scripts/make.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theprotein/mad-mark/HEAD/src/scripts/make.js --------------------------------------------------------------------------------