├── .circleci_template └── config.yml ├── .devcontainer └── devcontainer.json ├── .github └── workflows │ └── on_push.yml ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── Gemfile ├── Gemfile.lock ├── Gruntfile.js ├── README.md ├── articles ├── .gitignore ├── Rakefile ├── catalog.yml ├── config-ebook.yml ├── config-viewer.yml ├── config.yml ├── configure.re ├── contributors.re ├── distribution.re ├── doc │ ├── catalog.ja.md │ ├── catalog.md │ ├── customize_epub.ja.md │ ├── customize_epub.md │ ├── format.ja.md │ ├── format.md │ ├── format_idg.ja.md │ ├── makeindex.ja.md │ ├── makeindex.md │ ├── pdfmaker.ja.md │ ├── pdfmaker.md │ ├── preproc.ja.md │ ├── preproc.md │ ├── quickstart.ja.md │ ├── quickstart.md │ ├── writing_vertical.ja.md │ └── writing_vertical.md ├── epub_style.css ├── epub_style.scss ├── images │ ├── configure │ │ ├── toclevel.jpg │ │ ├── toclevel2.png │ │ └── toclevel3.png │ ├── cover.jpg │ ├── html_header.jpg │ ├── planning-book │ │ ├── books.png │ │ └── techbookfest.png │ ├── publishing-book │ │ ├── ebook.png │ │ ├── epub.png │ │ ├── epub_reader.png │ │ ├── font.png │ │ ├── hyoushi.png │ │ ├── nombre.png │ │ ├── pdfx.png │ │ ├── replace-color-dot-gain.png │ │ └── replace-color.png │ ├── review-introduction │ │ ├── header_left.png │ │ ├── header_right.png │ │ ├── image_sample.png │ │ ├── image_sample_dup1.png │ │ ├── image_sample_dup2.png │ │ ├── openany.png │ │ └── openright.png │ ├── setup │ │ ├── vscode-language-review-sample1.png │ │ ├── vscode-language-review-sample2.png │ │ ├── vscode_extensions.png │ │ ├── webroot.png │ │ └── webroot_browsing.png │ ├── textlint │ │ ├── vscode-prh-warning.png │ │ └── vscode-prh.png │ ├── tips │ │ ├── coverimage.png │ │ ├── hontobira_subtitle.png │ │ ├── sheet-page1.png │ │ ├── sheet-page2.png │ │ ├── sheet-page3.png │ │ └── sheet-page4.png │ ├── workflow │ │ └── workflow.png │ └── writing-book │ │ └── review-cover.png ├── layouts │ └── config-local.tex.erb ├── lib │ └── tasks │ │ ├── review.rake │ │ └── z01_pandoc2review.rake ├── locale.yml ├── markdown.md ├── planning-book.re ├── preface.re ├── prh.yml ├── publishing-book.re ├── review-introduction.re ├── setup.re ├── sty │ ├── README.md │ ├── gentombow.sty │ ├── jsbook.cls │ ├── jumoline.sty │ ├── plistings.sty │ ├── review-base.sty │ ├── review-custom.sty │ ├── review-jsbook.cls │ ├── review-style.sty │ ├── review-tcbox.sty │ ├── reviewmacro.sty │ ├── techbooster-doujin-base.sty │ ├── techbooster-viewer-base-mintyo.sty │ ├── techbooster-viewer-base.sty │ └── viewermacro.sty ├── style-web.css ├── style-web.scss ├── style.css ├── style.scss ├── textlint.re ├── tips.re ├── workflow.re └── writing-book.re ├── code └── mhidaka │ └── code ├── package.json ├── qr-generator ├── .gitignore ├── 31511.css ├── 31511.html ├── 51481.css ├── 51481.html ├── README.md ├── get_ids.js └── qr-generator.sh ├── rebuild-css.sh ├── redpen-conf-ja.xml └── setup.sh /.circleci_template/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/.circleci_template/config.yml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/on_push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/.github/workflows/on_push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/README.md -------------------------------------------------------------------------------- /articles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/.gitignore -------------------------------------------------------------------------------- /articles/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/Rakefile -------------------------------------------------------------------------------- /articles/catalog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/catalog.yml -------------------------------------------------------------------------------- /articles/config-ebook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/config-ebook.yml -------------------------------------------------------------------------------- /articles/config-viewer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/config-viewer.yml -------------------------------------------------------------------------------- /articles/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/config.yml -------------------------------------------------------------------------------- /articles/configure.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/configure.re -------------------------------------------------------------------------------- /articles/contributors.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/contributors.re -------------------------------------------------------------------------------- /articles/distribution.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/distribution.re -------------------------------------------------------------------------------- /articles/doc/catalog.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/catalog.ja.md -------------------------------------------------------------------------------- /articles/doc/catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/catalog.md -------------------------------------------------------------------------------- /articles/doc/customize_epub.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/customize_epub.ja.md -------------------------------------------------------------------------------- /articles/doc/customize_epub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/customize_epub.md -------------------------------------------------------------------------------- /articles/doc/format.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/format.ja.md -------------------------------------------------------------------------------- /articles/doc/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/format.md -------------------------------------------------------------------------------- /articles/doc/format_idg.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/format_idg.ja.md -------------------------------------------------------------------------------- /articles/doc/makeindex.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/makeindex.ja.md -------------------------------------------------------------------------------- /articles/doc/makeindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/makeindex.md -------------------------------------------------------------------------------- /articles/doc/pdfmaker.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/pdfmaker.ja.md -------------------------------------------------------------------------------- /articles/doc/pdfmaker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/pdfmaker.md -------------------------------------------------------------------------------- /articles/doc/preproc.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/preproc.ja.md -------------------------------------------------------------------------------- /articles/doc/preproc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/preproc.md -------------------------------------------------------------------------------- /articles/doc/quickstart.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/quickstart.ja.md -------------------------------------------------------------------------------- /articles/doc/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/quickstart.md -------------------------------------------------------------------------------- /articles/doc/writing_vertical.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/writing_vertical.ja.md -------------------------------------------------------------------------------- /articles/doc/writing_vertical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/doc/writing_vertical.md -------------------------------------------------------------------------------- /articles/epub_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/epub_style.css -------------------------------------------------------------------------------- /articles/epub_style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/epub_style.scss -------------------------------------------------------------------------------- /articles/images/configure/toclevel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/configure/toclevel.jpg -------------------------------------------------------------------------------- /articles/images/configure/toclevel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/configure/toclevel2.png -------------------------------------------------------------------------------- /articles/images/configure/toclevel3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/configure/toclevel3.png -------------------------------------------------------------------------------- /articles/images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/cover.jpg -------------------------------------------------------------------------------- /articles/images/html_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/html_header.jpg -------------------------------------------------------------------------------- /articles/images/planning-book/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/planning-book/books.png -------------------------------------------------------------------------------- /articles/images/planning-book/techbookfest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/planning-book/techbookfest.png -------------------------------------------------------------------------------- /articles/images/publishing-book/ebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/publishing-book/ebook.png -------------------------------------------------------------------------------- /articles/images/publishing-book/epub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/publishing-book/epub.png -------------------------------------------------------------------------------- /articles/images/publishing-book/epub_reader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/publishing-book/epub_reader.png -------------------------------------------------------------------------------- /articles/images/publishing-book/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/publishing-book/font.png -------------------------------------------------------------------------------- /articles/images/publishing-book/hyoushi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/publishing-book/hyoushi.png -------------------------------------------------------------------------------- /articles/images/publishing-book/nombre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/publishing-book/nombre.png -------------------------------------------------------------------------------- /articles/images/publishing-book/pdfx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/publishing-book/pdfx.png -------------------------------------------------------------------------------- /articles/images/publishing-book/replace-color-dot-gain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/publishing-book/replace-color-dot-gain.png -------------------------------------------------------------------------------- /articles/images/publishing-book/replace-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/publishing-book/replace-color.png -------------------------------------------------------------------------------- /articles/images/review-introduction/header_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/review-introduction/header_left.png -------------------------------------------------------------------------------- /articles/images/review-introduction/header_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/review-introduction/header_right.png -------------------------------------------------------------------------------- /articles/images/review-introduction/image_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/review-introduction/image_sample.png -------------------------------------------------------------------------------- /articles/images/review-introduction/image_sample_dup1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/review-introduction/image_sample_dup1.png -------------------------------------------------------------------------------- /articles/images/review-introduction/image_sample_dup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/review-introduction/image_sample_dup2.png -------------------------------------------------------------------------------- /articles/images/review-introduction/openany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/review-introduction/openany.png -------------------------------------------------------------------------------- /articles/images/review-introduction/openright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/review-introduction/openright.png -------------------------------------------------------------------------------- /articles/images/setup/vscode-language-review-sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/setup/vscode-language-review-sample1.png -------------------------------------------------------------------------------- /articles/images/setup/vscode-language-review-sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/setup/vscode-language-review-sample2.png -------------------------------------------------------------------------------- /articles/images/setup/vscode_extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/setup/vscode_extensions.png -------------------------------------------------------------------------------- /articles/images/setup/webroot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/setup/webroot.png -------------------------------------------------------------------------------- /articles/images/setup/webroot_browsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/setup/webroot_browsing.png -------------------------------------------------------------------------------- /articles/images/textlint/vscode-prh-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/textlint/vscode-prh-warning.png -------------------------------------------------------------------------------- /articles/images/textlint/vscode-prh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/textlint/vscode-prh.png -------------------------------------------------------------------------------- /articles/images/tips/coverimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/tips/coverimage.png -------------------------------------------------------------------------------- /articles/images/tips/hontobira_subtitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/tips/hontobira_subtitle.png -------------------------------------------------------------------------------- /articles/images/tips/sheet-page1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/tips/sheet-page1.png -------------------------------------------------------------------------------- /articles/images/tips/sheet-page2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/tips/sheet-page2.png -------------------------------------------------------------------------------- /articles/images/tips/sheet-page3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/tips/sheet-page3.png -------------------------------------------------------------------------------- /articles/images/tips/sheet-page4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/tips/sheet-page4.png -------------------------------------------------------------------------------- /articles/images/workflow/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/workflow/workflow.png -------------------------------------------------------------------------------- /articles/images/writing-book/review-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/images/writing-book/review-cover.png -------------------------------------------------------------------------------- /articles/layouts/config-local.tex.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/layouts/config-local.tex.erb -------------------------------------------------------------------------------- /articles/lib/tasks/review.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/lib/tasks/review.rake -------------------------------------------------------------------------------- /articles/lib/tasks/z01_pandoc2review.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/lib/tasks/z01_pandoc2review.rake -------------------------------------------------------------------------------- /articles/locale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/locale.yml -------------------------------------------------------------------------------- /articles/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/markdown.md -------------------------------------------------------------------------------- /articles/planning-book.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/planning-book.re -------------------------------------------------------------------------------- /articles/preface.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/preface.re -------------------------------------------------------------------------------- /articles/prh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/prh.yml -------------------------------------------------------------------------------- /articles/publishing-book.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/publishing-book.re -------------------------------------------------------------------------------- /articles/review-introduction.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/review-introduction.re -------------------------------------------------------------------------------- /articles/setup.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/setup.re -------------------------------------------------------------------------------- /articles/sty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/sty/README.md -------------------------------------------------------------------------------- /articles/sty/gentombow.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/sty/gentombow.sty -------------------------------------------------------------------------------- /articles/sty/jsbook.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/sty/jsbook.cls -------------------------------------------------------------------------------- /articles/sty/jumoline.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/sty/jumoline.sty -------------------------------------------------------------------------------- /articles/sty/plistings.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/sty/plistings.sty -------------------------------------------------------------------------------- /articles/sty/review-base.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/sty/review-base.sty -------------------------------------------------------------------------------- /articles/sty/review-custom.sty: -------------------------------------------------------------------------------- 1 | % for user-defined macro 2 | -------------------------------------------------------------------------------- /articles/sty/review-jsbook.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/sty/review-jsbook.cls -------------------------------------------------------------------------------- /articles/sty/review-style.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/sty/review-style.sty -------------------------------------------------------------------------------- /articles/sty/review-tcbox.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/sty/review-tcbox.sty -------------------------------------------------------------------------------- /articles/sty/reviewmacro.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/sty/reviewmacro.sty -------------------------------------------------------------------------------- /articles/sty/techbooster-doujin-base.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/sty/techbooster-doujin-base.sty -------------------------------------------------------------------------------- /articles/sty/techbooster-viewer-base-mintyo.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/sty/techbooster-viewer-base-mintyo.sty -------------------------------------------------------------------------------- /articles/sty/techbooster-viewer-base.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/sty/techbooster-viewer-base.sty -------------------------------------------------------------------------------- /articles/sty/viewermacro.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/sty/viewermacro.sty -------------------------------------------------------------------------------- /articles/style-web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/style-web.css -------------------------------------------------------------------------------- /articles/style-web.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/style-web.scss -------------------------------------------------------------------------------- /articles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/style.css -------------------------------------------------------------------------------- /articles/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/style.scss -------------------------------------------------------------------------------- /articles/textlint.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/textlint.re -------------------------------------------------------------------------------- /articles/tips.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/tips.re -------------------------------------------------------------------------------- /articles/workflow.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/workflow.re -------------------------------------------------------------------------------- /articles/writing-book.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/articles/writing-book.re -------------------------------------------------------------------------------- /code/mhidaka/code: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/package.json -------------------------------------------------------------------------------- /qr-generator/.gitignore: -------------------------------------------------------------------------------- 1 | csv 2 | json 3 | qrimages 4 | rand.txt 5 | 6 | -------------------------------------------------------------------------------- /qr-generator/31511.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/qr-generator/31511.css -------------------------------------------------------------------------------- /qr-generator/31511.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/qr-generator/31511.html -------------------------------------------------------------------------------- /qr-generator/51481.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/qr-generator/51481.css -------------------------------------------------------------------------------- /qr-generator/51481.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/qr-generator/51481.html -------------------------------------------------------------------------------- /qr-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/qr-generator/README.md -------------------------------------------------------------------------------- /qr-generator/get_ids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/qr-generator/get_ids.js -------------------------------------------------------------------------------- /qr-generator/qr-generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/qr-generator/qr-generator.sh -------------------------------------------------------------------------------- /rebuild-css.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/rebuild-css.sh -------------------------------------------------------------------------------- /redpen-conf-ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/redpen-conf-ja.xml -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechBooster/FirstStepReVIEW-v3/HEAD/setup.sh --------------------------------------------------------------------------------