├── .circleci └── config.yml ├── .gitignore ├── .textlintrc ├── .vscode ├── settings.json └── tasks.json ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Makefile ├── README.md ├── args.mk ├── articles ├── .gitignore ├── catalog.yml ├── chapter1.re ├── chapter2.re ├── chapter3.re ├── chapter4.re ├── config.yml ├── images │ ├── grandpa.png │ ├── mago.png │ ├── postdef │ │ └── good.jpg │ └── preface │ │ └── bug.png ├── postdef.re ├── preface.re ├── review-ext.rb └── style.css ├── code └── sample.cr ├── docker_env ├── Dockerfile ├── docker-compose.yml ├── hooks │ └── build ├── startup.sh └── status_check.sh ├── in_docker.mk ├── package.json ├── prh-rules ├── README.md ├── files │ ├── markdown.yml │ └── review.yml ├── languages │ └── ja │ │ └── typo.yml ├── media │ ├── WEB+DB_PRESS.yml │ └── techbooster.yml └── terms │ ├── android.yml │ ├── javascript.yml │ ├── review.yml │ ├── software.yml │ └── trademark.yml └── scripts ├── html-ext.rb └── pdf.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/.gitignore -------------------------------------------------------------------------------- /.textlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/.textlintrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/README.md -------------------------------------------------------------------------------- /args.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/args.mk -------------------------------------------------------------------------------- /articles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/articles/.gitignore -------------------------------------------------------------------------------- /articles/catalog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/articles/catalog.yml -------------------------------------------------------------------------------- /articles/chapter1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/articles/chapter1.re -------------------------------------------------------------------------------- /articles/chapter2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/articles/chapter2.re -------------------------------------------------------------------------------- /articles/chapter3.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/articles/chapter3.re -------------------------------------------------------------------------------- /articles/chapter4.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/articles/chapter4.re -------------------------------------------------------------------------------- /articles/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/articles/config.yml -------------------------------------------------------------------------------- /articles/images/grandpa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/articles/images/grandpa.png -------------------------------------------------------------------------------- /articles/images/mago.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/articles/images/mago.png -------------------------------------------------------------------------------- /articles/images/postdef/good.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/articles/images/postdef/good.jpg -------------------------------------------------------------------------------- /articles/images/preface/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/articles/images/preface/bug.png -------------------------------------------------------------------------------- /articles/postdef.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/articles/postdef.re -------------------------------------------------------------------------------- /articles/preface.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/articles/preface.re -------------------------------------------------------------------------------- /articles/review-ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/articles/review-ext.rb -------------------------------------------------------------------------------- /articles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/articles/style.css -------------------------------------------------------------------------------- /code/sample.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/code/sample.cr -------------------------------------------------------------------------------- /docker_env/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/docker_env/Dockerfile -------------------------------------------------------------------------------- /docker_env/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/docker_env/docker-compose.yml -------------------------------------------------------------------------------- /docker_env/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/docker_env/hooks/build -------------------------------------------------------------------------------- /docker_env/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/docker_env/startup.sh -------------------------------------------------------------------------------- /docker_env/status_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/docker_env/status_check.sh -------------------------------------------------------------------------------- /in_docker.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/in_docker.mk -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/package.json -------------------------------------------------------------------------------- /prh-rules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/prh-rules/README.md -------------------------------------------------------------------------------- /prh-rules/files/markdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/prh-rules/files/markdown.yml -------------------------------------------------------------------------------- /prh-rules/files/review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/prh-rules/files/review.yml -------------------------------------------------------------------------------- /prh-rules/languages/ja/typo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/prh-rules/languages/ja/typo.yml -------------------------------------------------------------------------------- /prh-rules/media/WEB+DB_PRESS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/prh-rules/media/WEB+DB_PRESS.yml -------------------------------------------------------------------------------- /prh-rules/media/techbooster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/prh-rules/media/techbooster.yml -------------------------------------------------------------------------------- /prh-rules/terms/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/prh-rules/terms/android.yml -------------------------------------------------------------------------------- /prh-rules/terms/javascript.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/prh-rules/terms/javascript.yml -------------------------------------------------------------------------------- /prh-rules/terms/review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/prh-rules/terms/review.yml -------------------------------------------------------------------------------- /prh-rules/terms/software.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/prh-rules/terms/software.yml -------------------------------------------------------------------------------- /prh-rules/terms/trademark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/prh-rules/terms/trademark.yml -------------------------------------------------------------------------------- /scripts/html-ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/scripts/html-ext.rb -------------------------------------------------------------------------------- /scripts/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-grandpa/review-and-css-typesetting/HEAD/scripts/pdf.js --------------------------------------------------------------------------------