├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── cmd ├── README.md ├── diagrams.js ├── files.js ├── gpub.js ├── initializer.js ├── parser.js └── processor.js ├── copy-local-to-deps.sh ├── deps └── glift-core │ ├── BUILD │ ├── flattener │ ├── board.js │ ├── board_points.js │ ├── board_points_test.js │ ├── board_test.js │ ├── flattened.js │ ├── flattener.js │ ├── flattener_test.js │ ├── intersection.js │ ├── intersection_test.js │ ├── labels.js │ ├── labels_test.js │ ├── starpoints.js │ ├── starpoints_test.js │ ├── symbols.js │ └── symbols_test.js │ ├── glift.js │ ├── global.js │ ├── markdown │ ├── markdown.js │ ├── markdown_test.js │ ├── marked.js │ ├── renderer.js │ └── renderer_test.js │ ├── orientation │ ├── bbox.js │ ├── bbox_test.js │ ├── cropbox.js │ ├── cropbox_test.js │ ├── cropping.js │ ├── cropping_test.js │ ├── min_bbox.js │ ├── min_bbox_test.js │ ├── orientation.js │ ├── rotate.js │ └── rotate_test.js │ ├── parse │ ├── pandanet_test.js │ ├── parse.js │ ├── parse_test.js │ ├── sgf_parser.js │ ├── sgf_parsing_test.js │ ├── tygem.js │ └── tygem_test.js │ ├── rules │ ├── all_properties.js │ ├── autonumber.js │ ├── autonumber_test.js │ ├── goban.js │ ├── goban_test.js │ ├── move.js │ ├── movenode.js │ ├── movenode_test.js │ ├── movetree.js │ ├── movetree_test.js │ ├── problems.js │ ├── problems_test.js │ ├── properties.js │ ├── properties_test.js │ ├── rules.js │ ├── treepath.js │ ├── treepath_nextmoves_test.js │ └── treepath_test.js │ ├── sgf │ ├── sgf.js │ └── sgf_test.js │ ├── svg │ ├── pathutils.js │ ├── pathutils_test.js │ ├── svg.js │ ├── svgobj.js │ └── svgobj_test.js │ └── util │ ├── BUILD │ ├── array.js │ ├── array_test.js │ ├── colors.js │ ├── deep_equal.js │ ├── deep_equal_test.js │ ├── enums.js │ ├── enums_test.js │ ├── obj.js │ ├── obj_test.js │ ├── point.js │ ├── point_test.js │ ├── util.js │ └── util_test.js ├── examples ├── README.md ├── animated_game │ ├── epub-book-processed.yaml │ ├── epub-book.yaml │ ├── generate.sh │ └── sgfs │ │ └── minigo_game.sgf ├── basic_game_diagrams │ ├── generate.sh │ ├── go-book-processed.yaml │ ├── go-book.yaml │ └── sgfs │ │ ├── 1521484645-minigo-gpu-player-hrq8h.sgf │ │ ├── 1521484660-minigo-gpu-player-qkqjp.sgf │ │ ├── 1521484777-minigo-gpu-player-gmjsg.sgf │ │ ├── 1521484800-minigo-gpu-player-bf9f4.sgf │ │ └── 1521484806-minigo-gpu-player-bmmxf.sgf ├── capturing_examples │ ├── epub-book.yaml │ ├── generate.sh │ └── sgfs │ │ ├── 19_19_first_5_moves.sgf │ │ ├── empty_19.sgf │ │ ├── lotsa-stones.sgf │ │ ├── more_capture_9x9.sgf │ │ ├── more_capture_9x9_capture.sgf │ │ ├── simple.sgf │ │ ├── simple_9x9.sgf │ │ ├── simple_9x9_capture.sgf │ │ ├── territory_9x9.sgf │ │ ├── territory_9x9_no_count.sgf │ │ └── two-stones.sgf ├── epub_game_commentary │ ├── Fujisawa-Hosai-vs-Go-Seigen-19430225-commentary-An-Younggil-8p.sgf │ ├── README.md │ ├── acknowledgements.md │ ├── copyright.json │ ├── foreword.md │ ├── generate.sh │ ├── glossary.md │ ├── index.js │ ├── introduction.md │ └── preface.md ├── epub_problems │ ├── ebook.epub │ ├── epub-book.yaml │ ├── generate.sh │ ├── problems │ │ ├── ggg-easy-01.sgf │ │ ├── ggg-easy-02.sgf │ │ ├── ggg-easy-03.sgf │ │ ├── ggg-easy-04.sgf │ │ ├── ggg-easy-05.sgf │ │ ├── ggg-easy-06.sgf │ │ ├── ggg-easy-07.sgf │ │ ├── ggg-easy-08.sgf │ │ ├── ggg-easy-09.sgf │ │ ├── ggg-easy-10.sgf │ │ ├── ggg-easy-100.sgf │ │ ├── ggg-easy-101.sgf │ │ ├── ggg-easy-102.sgf │ │ ├── ggg-easy-103.sgf │ │ ├── ggg-easy-104.sgf │ │ ├── ggg-easy-105.sgf │ │ ├── ggg-easy-106.sgf │ │ ├── ggg-easy-107.sgf │ │ ├── ggg-easy-108.sgf │ │ ├── ggg-easy-109.sgf │ │ ├── ggg-easy-11.sgf │ │ ├── ggg-easy-110.sgf │ │ ├── ggg-easy-111.sgf │ │ ├── ggg-easy-112.sgf │ │ ├── ggg-easy-113.sgf │ │ ├── ggg-easy-114.sgf │ │ ├── ggg-easy-115.sgf │ │ ├── ggg-easy-116.sgf │ │ ├── ggg-easy-117.sgf │ │ ├── ggg-easy-118.sgf │ │ ├── ggg-easy-119.sgf │ │ ├── ggg-easy-12.sgf │ │ ├── ggg-easy-120.sgf │ │ ├── ggg-easy-121.sgf │ │ ├── ggg-easy-122.sgf │ │ ├── ggg-easy-123.sgf │ │ ├── ggg-easy-124.sgf │ │ ├── ggg-easy-125.sgf │ │ ├── ggg-easy-126.sgf │ │ ├── ggg-easy-127.sgf │ │ ├── ggg-easy-128.sgf │ │ ├── ggg-easy-129.sgf │ │ ├── ggg-easy-13.sgf │ │ ├── ggg-easy-130.sgf │ │ ├── ggg-easy-131.sgf │ │ ├── ggg-easy-132.sgf │ │ ├── ggg-easy-133.sgf │ │ ├── ggg-easy-134.sgf │ │ ├── ggg-easy-135.sgf │ │ ├── ggg-easy-136.sgf │ │ ├── ggg-easy-137.sgf │ │ ├── ggg-easy-138.sgf │ │ ├── ggg-easy-139.sgf │ │ ├── ggg-easy-14.sgf │ │ ├── ggg-easy-140.sgf │ │ ├── ggg-easy-15.sgf │ │ ├── ggg-easy-16.sgf │ │ ├── ggg-easy-17.sgf │ │ ├── ggg-easy-18.sgf │ │ ├── ggg-easy-19.sgf │ │ ├── ggg-easy-20.sgf │ │ ├── ggg-easy-21.sgf │ │ ├── ggg-easy-22.sgf │ │ ├── ggg-easy-23.sgf │ │ ├── ggg-easy-24.sgf │ │ ├── ggg-easy-25.sgf │ │ ├── ggg-easy-26.sgf │ │ ├── ggg-easy-27.sgf │ │ ├── ggg-easy-28.sgf │ │ ├── ggg-easy-29.sgf │ │ ├── ggg-easy-30.sgf │ │ ├── ggg-easy-31.sgf │ │ ├── ggg-easy-32.sgf │ │ ├── ggg-easy-33.sgf │ │ ├── ggg-easy-34.sgf │ │ ├── ggg-easy-35.sgf │ │ ├── ggg-easy-36.sgf │ │ ├── ggg-easy-37.sgf │ │ ├── ggg-easy-38.sgf │ │ ├── ggg-easy-39.sgf │ │ ├── ggg-easy-40.sgf │ │ ├── ggg-easy-41.sgf │ │ ├── ggg-easy-42.sgf │ │ ├── ggg-easy-43.sgf │ │ ├── ggg-easy-44.sgf │ │ ├── ggg-easy-45.sgf │ │ ├── ggg-easy-46.sgf │ │ ├── ggg-easy-47.sgf │ │ ├── ggg-easy-48.sgf │ │ ├── ggg-easy-49.sgf │ │ ├── ggg-easy-50.sgf │ │ ├── ggg-easy-51.sgf │ │ ├── ggg-easy-52.sgf │ │ ├── ggg-easy-53.sgf │ │ ├── ggg-easy-54.sgf │ │ ├── ggg-easy-55.sgf │ │ ├── ggg-easy-56.sgf │ │ ├── ggg-easy-57.sgf │ │ ├── ggg-easy-58.sgf │ │ ├── ggg-easy-59.sgf │ │ ├── ggg-easy-60.sgf │ │ ├── ggg-easy-61.sgf │ │ ├── ggg-easy-62.sgf │ │ ├── ggg-easy-63.sgf │ │ ├── ggg-easy-64.sgf │ │ ├── ggg-easy-65.sgf │ │ ├── ggg-easy-66.sgf │ │ ├── ggg-easy-67.sgf │ │ ├── ggg-easy-68.sgf │ │ ├── ggg-easy-69.sgf │ │ ├── ggg-easy-70.sgf │ │ ├── ggg-easy-71.sgf │ │ ├── ggg-easy-72.sgf │ │ ├── ggg-easy-73.sgf │ │ ├── ggg-easy-74.sgf │ │ ├── ggg-easy-75.sgf │ │ ├── ggg-easy-76.sgf │ │ ├── ggg-easy-77.sgf │ │ ├── ggg-easy-78.sgf │ │ ├── ggg-easy-79.sgf │ │ ├── ggg-easy-80.sgf │ │ ├── ggg-easy-81.sgf │ │ ├── ggg-easy-82.sgf │ │ ├── ggg-easy-83.sgf │ │ ├── ggg-easy-84.sgf │ │ ├── ggg-easy-85.sgf │ │ ├── ggg-easy-86.sgf │ │ ├── ggg-easy-87.sgf │ │ ├── ggg-easy-88.sgf │ │ ├── ggg-easy-89.sgf │ │ ├── ggg-easy-90.sgf │ │ ├── ggg-easy-91.sgf │ │ ├── ggg-easy-92.sgf │ │ ├── ggg-easy-93.sgf │ │ ├── ggg-easy-94.sgf │ │ ├── ggg-easy-95.sgf │ │ ├── ggg-easy-96.sgf │ │ ├── ggg-easy-97.sgf │ │ ├── ggg-easy-98.sgf │ │ └── ggg-easy-99.sgf │ ├── validate.sh │ └── zip.sh ├── game_commentary │ ├── Fujisawa-Hosai-vs-Go-Seigen-19430225-commentary-An-Younggil-8p.sgf │ ├── README.md │ ├── acknowledgements.md │ ├── copyright.json │ ├── default_gen.sh │ ├── foreword.md │ ├── game_commentary.pdf │ ├── game_commentary.tex │ ├── game_commentary.toc │ ├── gen_with_box_cropping.sh │ ├── glossary.md │ ├── igo_gen.sh │ ├── introduction.md │ ├── octavo_cropping.sh │ ├── pdfx.sh │ ├── pdfx_octavo.sh │ └── preface.md ├── multi_type_ebook │ └── multi_type_ebook.js ├── problem_book │ ├── README.md │ ├── ebook.js │ ├── generate.sh │ ├── index.js │ ├── problem_book.pdf │ ├── problem_book.tex │ ├── problem_book.toc │ └── problems │ │ ├── ggg-easy-01.sgf │ │ ├── ggg-easy-02.sgf │ │ ├── ggg-easy-03.sgf │ │ ├── ggg-easy-04.sgf │ │ ├── ggg-easy-05.sgf │ │ ├── ggg-easy-06.sgf │ │ ├── ggg-easy-07.sgf │ │ ├── ggg-easy-08.sgf │ │ ├── ggg-easy-09.sgf │ │ ├── ggg-easy-10.sgf │ │ ├── ggg-easy-100.sgf │ │ ├── ggg-easy-101.sgf │ │ ├── ggg-easy-102.sgf │ │ ├── ggg-easy-103.sgf │ │ ├── ggg-easy-104.sgf │ │ ├── ggg-easy-105.sgf │ │ ├── ggg-easy-106.sgf │ │ ├── ggg-easy-107.sgf │ │ ├── ggg-easy-108.sgf │ │ ├── ggg-easy-109.sgf │ │ ├── ggg-easy-11.sgf │ │ ├── ggg-easy-110.sgf │ │ ├── ggg-easy-111.sgf │ │ ├── ggg-easy-112.sgf │ │ ├── ggg-easy-113.sgf │ │ ├── ggg-easy-114.sgf │ │ ├── ggg-easy-115.sgf │ │ ├── ggg-easy-116.sgf │ │ ├── ggg-easy-117.sgf │ │ ├── ggg-easy-118.sgf │ │ ├── ggg-easy-119.sgf │ │ ├── ggg-easy-12.sgf │ │ ├── ggg-easy-120.sgf │ │ ├── ggg-easy-121.sgf │ │ ├── ggg-easy-122.sgf │ │ ├── ggg-easy-123.sgf │ │ ├── ggg-easy-124.sgf │ │ ├── ggg-easy-125.sgf │ │ ├── ggg-easy-126.sgf │ │ ├── ggg-easy-127.sgf │ │ ├── ggg-easy-128.sgf │ │ ├── ggg-easy-129.sgf │ │ ├── ggg-easy-13.sgf │ │ ├── ggg-easy-130.sgf │ │ ├── ggg-easy-131.sgf │ │ ├── ggg-easy-132.sgf │ │ ├── ggg-easy-133.sgf │ │ ├── ggg-easy-134.sgf │ │ ├── ggg-easy-135.sgf │ │ ├── ggg-easy-136.sgf │ │ ├── ggg-easy-137.sgf │ │ ├── ggg-easy-138.sgf │ │ ├── ggg-easy-139.sgf │ │ ├── ggg-easy-14.sgf │ │ ├── ggg-easy-140.sgf │ │ ├── ggg-easy-15.sgf │ │ ├── ggg-easy-16.sgf │ │ ├── ggg-easy-17.sgf │ │ ├── ggg-easy-18.sgf │ │ ├── ggg-easy-19.sgf │ │ ├── ggg-easy-20.sgf │ │ ├── ggg-easy-21.sgf │ │ ├── ggg-easy-22.sgf │ │ ├── ggg-easy-23.sgf │ │ ├── ggg-easy-24.sgf │ │ ├── ggg-easy-25.sgf │ │ ├── ggg-easy-26.sgf │ │ ├── ggg-easy-27.sgf │ │ ├── ggg-easy-28.sgf │ │ ├── ggg-easy-29.sgf │ │ ├── ggg-easy-30.sgf │ │ ├── ggg-easy-31.sgf │ │ ├── ggg-easy-32.sgf │ │ ├── ggg-easy-33.sgf │ │ ├── ggg-easy-34.sgf │ │ ├── ggg-easy-35.sgf │ │ ├── ggg-easy-36.sgf │ │ ├── ggg-easy-37.sgf │ │ ├── ggg-easy-38.sgf │ │ ├── ggg-easy-39.sgf │ │ ├── ggg-easy-40.sgf │ │ ├── ggg-easy-41.sgf │ │ ├── ggg-easy-42.sgf │ │ ├── ggg-easy-43.sgf │ │ ├── ggg-easy-44.sgf │ │ ├── ggg-easy-45.sgf │ │ ├── ggg-easy-46.sgf │ │ ├── ggg-easy-47.sgf │ │ ├── ggg-easy-48.sgf │ │ ├── ggg-easy-49.sgf │ │ ├── ggg-easy-50.sgf │ │ ├── ggg-easy-51.sgf │ │ ├── ggg-easy-52.sgf │ │ ├── ggg-easy-53.sgf │ │ ├── ggg-easy-54.sgf │ │ ├── ggg-easy-55.sgf │ │ ├── ggg-easy-56.sgf │ │ ├── ggg-easy-57.sgf │ │ ├── ggg-easy-58.sgf │ │ ├── ggg-easy-59.sgf │ │ ├── ggg-easy-60.sgf │ │ ├── ggg-easy-61.sgf │ │ ├── ggg-easy-62.sgf │ │ ├── ggg-easy-63.sgf │ │ ├── ggg-easy-64.sgf │ │ ├── ggg-easy-65.sgf │ │ ├── ggg-easy-66.sgf │ │ ├── ggg-easy-67.sgf │ │ ├── ggg-easy-68.sgf │ │ ├── ggg-easy-69.sgf │ │ ├── ggg-easy-70.sgf │ │ ├── ggg-easy-71.sgf │ │ ├── ggg-easy-72.sgf │ │ ├── ggg-easy-73.sgf │ │ ├── ggg-easy-74.sgf │ │ ├── ggg-easy-75.sgf │ │ ├── ggg-easy-76.sgf │ │ ├── ggg-easy-77.sgf │ │ ├── ggg-easy-78.sgf │ │ ├── ggg-easy-79.sgf │ │ ├── ggg-easy-80.sgf │ │ ├── ggg-easy-81.sgf │ │ ├── ggg-easy-82.sgf │ │ ├── ggg-easy-83.sgf │ │ ├── ggg-easy-84.sgf │ │ ├── ggg-easy-85.sgf │ │ ├── ggg-easy-86.sgf │ │ ├── ggg-easy-87.sgf │ │ ├── ggg-easy-88.sgf │ │ ├── ggg-easy-89.sgf │ │ ├── ggg-easy-90.sgf │ │ ├── ggg-easy-91.sgf │ │ ├── ggg-easy-92.sgf │ │ ├── ggg-easy-93.sgf │ │ ├── ggg-easy-94.sgf │ │ ├── ggg-easy-95.sgf │ │ ├── ggg-easy-96.sgf │ │ ├── ggg-easy-97.sgf │ │ ├── ggg-easy-98.sgf │ │ └── ggg-easy-99.sgf ├── yearbook_example │ ├── generate.sh │ ├── yearbook_example.pdf │ ├── yearbook_example.sgf │ ├── yearbook_example.tex │ └── yearbook_example.toc ├── yearbook_example_gulee │ ├── 11-20041118.sgf │ ├── generate.sh │ ├── yearbook_example_gulee.pdf │ ├── yearbook_example_gulee.tex │ └── yearbook_example_gulee.toc └── yearbook_example_spaced │ ├── generate.sh │ ├── yearbook_example_spaced.pdf │ ├── yearbook_example_spaced.sgf │ ├── yearbook_example_spaced.tex │ └── yearbook_example_spaced.toc ├── gpub-node └── gpub-concat.js ├── gulpfile.js ├── index.js ├── marks-demo.svg ├── package.json ├── resources └── ISOcoated_v2_300_eci.icc ├── scripts ├── book_gen.js ├── defs │ ├── filez.js │ ├── flagz.js │ ├── glift.js │ └── gpub.js ├── manip │ ├── autonumberer.js │ ├── sgf_rebaser.js │ └── to_sgf.js ├── sgf_merge.js ├── spec_gen.js └── test_import.js ├── src ├── api │ ├── api.js │ ├── api_test.js │ ├── fluent_api.js │ └── fluent_api_test.js ├── book-legacy │ ├── book.js │ ├── context.js │ ├── context_test.js │ ├── generator.js │ ├── generator_test.js │ └── latex │ │ ├── context.js │ │ ├── context_test.js │ │ ├── latex.js │ │ ├── latex_generator.js │ │ ├── latex_template.js │ │ ├── latex_template_test.js │ │ ├── options.js │ │ └── paging.js ├── book │ ├── book.js │ ├── book_file.js │ ├── book_maker.js │ ├── book_maker_test.js │ ├── epub │ │ ├── contents.js │ │ ├── css.js │ │ ├── css_test.js │ │ ├── epub.js │ │ ├── epub_test.js │ │ ├── file_builder.js │ │ ├── nav.js │ │ ├── nav_test.js │ │ └── opf.js │ ├── format.js │ ├── format_test.js │ ├── frontmatter.js │ ├── frontmatter_test.js │ ├── latex │ │ ├── latex.js │ │ ├── latex_test.js │ │ ├── markdown_renderer.js │ │ ├── markdown_renderer_test.js │ │ ├── pdfx.js │ │ └── pdfx_test.js │ ├── page_size.js │ └── page_size_test.js ├── diagrams │ ├── diagram_def.js │ ├── diagram_type.js │ ├── diagrams.js │ ├── gnos │ │ ├── gnos.js │ │ ├── gnos_renderer.js │ │ ├── gnos_test.js │ │ └── symbol_map.js │ ├── gooe │ │ ├── gooe.js │ │ ├── gooe_test.js │ │ ├── init.js │ │ └── symbol_map.js │ ├── gpub_ascii │ │ ├── gpub_ascii.js │ │ └── symbol_map.js │ ├── igo │ │ ├── igo.js │ │ ├── igo_init.js │ │ ├── igo_intersections.js │ │ ├── igo_intersections_test.js │ │ ├── igo_renderer.js │ │ └── igo_test.js │ ├── inline_label_test.js │ ├── pdf │ │ └── pdf.js │ ├── renderer.js │ ├── senseis_ascii │ │ ├── senseis_ascii.js │ │ ├── senseis_ascii_test.js │ │ └── symbol_map.js │ ├── smartgo │ │ ├── smartgo.js │ │ ├── smartgo_renderer.js │ │ ├── smartgo_renderer_test.js │ │ └── symbol_table.js │ └── svg │ │ ├── lines.js │ │ ├── marks.js │ │ ├── starpoints.js │ │ ├── stones.js │ │ ├── svg.js │ │ ├── svg_options.js │ │ ├── svg_renderer.js │ │ ├── svg_renderer_test.js │ │ └── svg_style.js ├── gpub.js ├── gpub_global.js ├── options │ ├── diagram_options.js │ ├── diagram_options_test.js │ ├── frontmatter.js │ ├── metadata.js │ ├── metadata_test.js │ ├── options.js │ ├── options_test.js │ ├── raw_grouping.js │ ├── spec_options.js │ ├── spec_options_test.js │ ├── template_options.js │ └── template_options_test.js ├── spec │ ├── README.md │ ├── game_commentary.js │ ├── game_commentary_test.js │ ├── generated.js │ ├── grouping.js │ ├── idgen.js │ ├── idgen_test.js │ ├── position.js │ ├── position_overrider.js │ ├── preprocess.js │ ├── preprocess_test.js │ ├── problem.js │ ├── problem_test.js │ ├── processor.js │ ├── processor_test.js │ ├── spec.js │ ├── spec_def.js │ ├── spec_def_test.js │ └── spec_test.js ├── templates │ ├── README.md │ ├── game_commentary_ebook │ │ ├── game_commentary_ebook.js │ │ ├── gce_css.js │ │ └── templater.js │ ├── problem_ebook │ │ ├── css.js │ │ ├── problem_ebook.js │ │ └── templater.js │ └── templates.js └── util │ ├── buffer.js │ ├── buffer_test.js │ ├── movetree_cache.js │ ├── size.js │ ├── size_test.js │ └── util.js ├── test ├── htmltests │ └── GPubQunitTest.html ├── libs │ ├── markdown-0.6.0-beta1 │ │ ├── Changes.markdown │ │ ├── README.markdown │ │ ├── bin │ │ │ └── md2html.js │ │ ├── lib │ │ │ ├── index.js │ │ │ └── markdown.js │ │ └── package.json │ ├── qunit.css │ └── qunit.js ├── templates │ └── data │ │ ├── glift.js │ │ └── html_book_template.html └── testdata │ ├── 9x9prob.sgf │ ├── ajax3_13.sgf │ ├── ajax_problem.sgf │ ├── ajax_problem2.sgf │ ├── easy.sgf │ ├── ggg-easy-44.sgf │ ├── gogameguru_commentary.js │ ├── kogos3.js │ ├── problem10.sgf │ ├── problem9.sgf │ ├── sgfs.js │ ├── tygem_example.gib │ └── tygem_example.js └── tools ├── epubcheck ├── COPYING.txt ├── README.txt ├── THIRD-PARTY.txt ├── epubcheck.jar ├── lib │ ├── Saxon-HE-9.5.1-5.jar │ ├── common-image-3.1.2.jar │ ├── common-io-3.1.2.jar │ ├── common-lang-3.1.2.jar │ ├── commons-compress-1.5.jar │ ├── guava-14.0.1.jar │ ├── imageio-core-3.1.2.jar │ ├── imageio-jpeg-3.1.2.jar │ ├── imageio-metadata-3.1.2.jar │ ├── jackson-core-asl-1.9.12.jar │ ├── jackson-mapper-asl-1.9.12.jar │ ├── jing-20120724.0.0.jar │ └── sac-1.3.jar └── licenses │ ├── Apache-2.0.txt │ ├── BSD-3-Clause.txt │ ├── MPL-1.0.txt │ └── W3C.txt └── kindlegen ├── KindleGen_Mac_i386_v2_9.zip ├── docs └── english │ ├── Readme.txt │ ├── Release Notes.html │ └── known issues.txt ├── kindlegen └── manual.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/README.md -------------------------------------------------------------------------------- /cmd/README.md: -------------------------------------------------------------------------------- 1 | # The Gpub command line tool. 2 | -------------------------------------------------------------------------------- /cmd/diagrams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/cmd/diagrams.js -------------------------------------------------------------------------------- /cmd/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/cmd/files.js -------------------------------------------------------------------------------- /cmd/gpub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/cmd/gpub.js -------------------------------------------------------------------------------- /cmd/initializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/cmd/initializer.js -------------------------------------------------------------------------------- /cmd/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/cmd/parser.js -------------------------------------------------------------------------------- /cmd/processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/cmd/processor.js -------------------------------------------------------------------------------- /copy-local-to-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/copy-local-to-deps.sh -------------------------------------------------------------------------------- /deps/glift-core/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/BUILD -------------------------------------------------------------------------------- /deps/glift-core/flattener/board.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/flattener/board.js -------------------------------------------------------------------------------- /deps/glift-core/flattener/board_points.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/flattener/board_points.js -------------------------------------------------------------------------------- /deps/glift-core/flattener/board_points_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/flattener/board_points_test.js -------------------------------------------------------------------------------- /deps/glift-core/flattener/board_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/flattener/board_test.js -------------------------------------------------------------------------------- /deps/glift-core/flattener/flattened.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/flattener/flattened.js -------------------------------------------------------------------------------- /deps/glift-core/flattener/flattener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/flattener/flattener.js -------------------------------------------------------------------------------- /deps/glift-core/flattener/flattener_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/flattener/flattener_test.js -------------------------------------------------------------------------------- /deps/glift-core/flattener/intersection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/flattener/intersection.js -------------------------------------------------------------------------------- /deps/glift-core/flattener/intersection_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/flattener/intersection_test.js -------------------------------------------------------------------------------- /deps/glift-core/flattener/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/flattener/labels.js -------------------------------------------------------------------------------- /deps/glift-core/flattener/labels_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/flattener/labels_test.js -------------------------------------------------------------------------------- /deps/glift-core/flattener/starpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/flattener/starpoints.js -------------------------------------------------------------------------------- /deps/glift-core/flattener/starpoints_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/flattener/starpoints_test.js -------------------------------------------------------------------------------- /deps/glift-core/flattener/symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/flattener/symbols.js -------------------------------------------------------------------------------- /deps/glift-core/flattener/symbols_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/flattener/symbols_test.js -------------------------------------------------------------------------------- /deps/glift-core/glift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/glift.js -------------------------------------------------------------------------------- /deps/glift-core/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/global.js -------------------------------------------------------------------------------- /deps/glift-core/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/markdown/markdown.js -------------------------------------------------------------------------------- /deps/glift-core/markdown/markdown_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/markdown/markdown_test.js -------------------------------------------------------------------------------- /deps/glift-core/markdown/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/markdown/marked.js -------------------------------------------------------------------------------- /deps/glift-core/markdown/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/markdown/renderer.js -------------------------------------------------------------------------------- /deps/glift-core/markdown/renderer_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/markdown/renderer_test.js -------------------------------------------------------------------------------- /deps/glift-core/orientation/bbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/orientation/bbox.js -------------------------------------------------------------------------------- /deps/glift-core/orientation/bbox_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/orientation/bbox_test.js -------------------------------------------------------------------------------- /deps/glift-core/orientation/cropbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/orientation/cropbox.js -------------------------------------------------------------------------------- /deps/glift-core/orientation/cropbox_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/orientation/cropbox_test.js -------------------------------------------------------------------------------- /deps/glift-core/orientation/cropping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/orientation/cropping.js -------------------------------------------------------------------------------- /deps/glift-core/orientation/cropping_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/orientation/cropping_test.js -------------------------------------------------------------------------------- /deps/glift-core/orientation/min_bbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/orientation/min_bbox.js -------------------------------------------------------------------------------- /deps/glift-core/orientation/min_bbox_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/orientation/min_bbox_test.js -------------------------------------------------------------------------------- /deps/glift-core/orientation/orientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/orientation/orientation.js -------------------------------------------------------------------------------- /deps/glift-core/orientation/rotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/orientation/rotate.js -------------------------------------------------------------------------------- /deps/glift-core/orientation/rotate_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/orientation/rotate_test.js -------------------------------------------------------------------------------- /deps/glift-core/parse/pandanet_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/parse/pandanet_test.js -------------------------------------------------------------------------------- /deps/glift-core/parse/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/parse/parse.js -------------------------------------------------------------------------------- /deps/glift-core/parse/parse_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/parse/parse_test.js -------------------------------------------------------------------------------- /deps/glift-core/parse/sgf_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/parse/sgf_parser.js -------------------------------------------------------------------------------- /deps/glift-core/parse/sgf_parsing_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/parse/sgf_parsing_test.js -------------------------------------------------------------------------------- /deps/glift-core/parse/tygem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/parse/tygem.js -------------------------------------------------------------------------------- /deps/glift-core/parse/tygem_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/parse/tygem_test.js -------------------------------------------------------------------------------- /deps/glift-core/rules/all_properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/all_properties.js -------------------------------------------------------------------------------- /deps/glift-core/rules/autonumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/autonumber.js -------------------------------------------------------------------------------- /deps/glift-core/rules/autonumber_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/autonumber_test.js -------------------------------------------------------------------------------- /deps/glift-core/rules/goban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/goban.js -------------------------------------------------------------------------------- /deps/glift-core/rules/goban_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/goban_test.js -------------------------------------------------------------------------------- /deps/glift-core/rules/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/move.js -------------------------------------------------------------------------------- /deps/glift-core/rules/movenode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/movenode.js -------------------------------------------------------------------------------- /deps/glift-core/rules/movenode_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/movenode_test.js -------------------------------------------------------------------------------- /deps/glift-core/rules/movetree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/movetree.js -------------------------------------------------------------------------------- /deps/glift-core/rules/movetree_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/movetree_test.js -------------------------------------------------------------------------------- /deps/glift-core/rules/problems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/problems.js -------------------------------------------------------------------------------- /deps/glift-core/rules/problems_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/problems_test.js -------------------------------------------------------------------------------- /deps/glift-core/rules/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/properties.js -------------------------------------------------------------------------------- /deps/glift-core/rules/properties_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/properties_test.js -------------------------------------------------------------------------------- /deps/glift-core/rules/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/rules.js -------------------------------------------------------------------------------- /deps/glift-core/rules/treepath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/treepath.js -------------------------------------------------------------------------------- /deps/glift-core/rules/treepath_nextmoves_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/treepath_nextmoves_test.js -------------------------------------------------------------------------------- /deps/glift-core/rules/treepath_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/rules/treepath_test.js -------------------------------------------------------------------------------- /deps/glift-core/sgf/sgf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/sgf/sgf.js -------------------------------------------------------------------------------- /deps/glift-core/sgf/sgf_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/sgf/sgf_test.js -------------------------------------------------------------------------------- /deps/glift-core/svg/pathutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/svg/pathutils.js -------------------------------------------------------------------------------- /deps/glift-core/svg/pathutils_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/svg/pathutils_test.js -------------------------------------------------------------------------------- /deps/glift-core/svg/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/svg/svg.js -------------------------------------------------------------------------------- /deps/glift-core/svg/svgobj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/svg/svgobj.js -------------------------------------------------------------------------------- /deps/glift-core/svg/svgobj_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/svg/svgobj_test.js -------------------------------------------------------------------------------- /deps/glift-core/util/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/util/BUILD -------------------------------------------------------------------------------- /deps/glift-core/util/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/util/array.js -------------------------------------------------------------------------------- /deps/glift-core/util/array_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/util/array_test.js -------------------------------------------------------------------------------- /deps/glift-core/util/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/util/colors.js -------------------------------------------------------------------------------- /deps/glift-core/util/deep_equal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/util/deep_equal.js -------------------------------------------------------------------------------- /deps/glift-core/util/deep_equal_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/util/deep_equal_test.js -------------------------------------------------------------------------------- /deps/glift-core/util/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/util/enums.js -------------------------------------------------------------------------------- /deps/glift-core/util/enums_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/util/enums_test.js -------------------------------------------------------------------------------- /deps/glift-core/util/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/util/obj.js -------------------------------------------------------------------------------- /deps/glift-core/util/obj_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/util/obj_test.js -------------------------------------------------------------------------------- /deps/glift-core/util/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/util/point.js -------------------------------------------------------------------------------- /deps/glift-core/util/point_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/util/point_test.js -------------------------------------------------------------------------------- /deps/glift-core/util/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/util/util.js -------------------------------------------------------------------------------- /deps/glift-core/util/util_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/deps/glift-core/util/util_test.js -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/animated_game/epub-book-processed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/animated_game/epub-book-processed.yaml -------------------------------------------------------------------------------- /examples/animated_game/epub-book.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/animated_game/epub-book.yaml -------------------------------------------------------------------------------- /examples/animated_game/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/animated_game/generate.sh -------------------------------------------------------------------------------- /examples/animated_game/sgfs/minigo_game.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/animated_game/sgfs/minigo_game.sgf -------------------------------------------------------------------------------- /examples/basic_game_diagrams/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/basic_game_diagrams/generate.sh -------------------------------------------------------------------------------- /examples/basic_game_diagrams/go-book-processed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/basic_game_diagrams/go-book-processed.yaml -------------------------------------------------------------------------------- /examples/basic_game_diagrams/go-book.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/basic_game_diagrams/go-book.yaml -------------------------------------------------------------------------------- /examples/basic_game_diagrams/sgfs/1521484645-minigo-gpu-player-hrq8h.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/basic_game_diagrams/sgfs/1521484645-minigo-gpu-player-hrq8h.sgf -------------------------------------------------------------------------------- /examples/basic_game_diagrams/sgfs/1521484660-minigo-gpu-player-qkqjp.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/basic_game_diagrams/sgfs/1521484660-minigo-gpu-player-qkqjp.sgf -------------------------------------------------------------------------------- /examples/basic_game_diagrams/sgfs/1521484777-minigo-gpu-player-gmjsg.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/basic_game_diagrams/sgfs/1521484777-minigo-gpu-player-gmjsg.sgf -------------------------------------------------------------------------------- /examples/basic_game_diagrams/sgfs/1521484800-minigo-gpu-player-bf9f4.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/basic_game_diagrams/sgfs/1521484800-minigo-gpu-player-bf9f4.sgf -------------------------------------------------------------------------------- /examples/basic_game_diagrams/sgfs/1521484806-minigo-gpu-player-bmmxf.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/basic_game_diagrams/sgfs/1521484806-minigo-gpu-player-bmmxf.sgf -------------------------------------------------------------------------------- /examples/capturing_examples/epub-book.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/capturing_examples/epub-book.yaml -------------------------------------------------------------------------------- /examples/capturing_examples/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/capturing_examples/generate.sh -------------------------------------------------------------------------------- /examples/capturing_examples/sgfs/19_19_first_5_moves.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/capturing_examples/sgfs/19_19_first_5_moves.sgf -------------------------------------------------------------------------------- /examples/capturing_examples/sgfs/empty_19.sgf: -------------------------------------------------------------------------------- 1 | (;GM[1]FF[4]CA[UTF-8]AP[CGoban:3]ST[2] 2 | RU[Japanese]SZ[19]KM[0.00] 3 | PW[White]PB[Black]) 4 | -------------------------------------------------------------------------------- /examples/capturing_examples/sgfs/lotsa-stones.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/capturing_examples/sgfs/lotsa-stones.sgf -------------------------------------------------------------------------------- /examples/capturing_examples/sgfs/more_capture_9x9.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/capturing_examples/sgfs/more_capture_9x9.sgf -------------------------------------------------------------------------------- /examples/capturing_examples/sgfs/more_capture_9x9_capture.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/capturing_examples/sgfs/more_capture_9x9_capture.sgf -------------------------------------------------------------------------------- /examples/capturing_examples/sgfs/simple.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/capturing_examples/sgfs/simple.sgf -------------------------------------------------------------------------------- /examples/capturing_examples/sgfs/simple_9x9.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/capturing_examples/sgfs/simple_9x9.sgf -------------------------------------------------------------------------------- /examples/capturing_examples/sgfs/simple_9x9_capture.sgf: -------------------------------------------------------------------------------- 1 | (;GM[1]FF[4]CA[UTF-8]AP[CGoban:3]ST[2] 2 | RU[Japanese]SZ[9]KM[0.00] 3 | PW[White]PB[Black]AB[ec][dd][fd][ee]) 4 | -------------------------------------------------------------------------------- /examples/capturing_examples/sgfs/territory_9x9.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/capturing_examples/sgfs/territory_9x9.sgf -------------------------------------------------------------------------------- /examples/capturing_examples/sgfs/territory_9x9_no_count.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/capturing_examples/sgfs/territory_9x9_no_count.sgf -------------------------------------------------------------------------------- /examples/capturing_examples/sgfs/two-stones.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/capturing_examples/sgfs/two-stones.sgf -------------------------------------------------------------------------------- /examples/epub_game_commentary/Fujisawa-Hosai-vs-Go-Seigen-19430225-commentary-An-Younggil-8p.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_game_commentary/Fujisawa-Hosai-vs-Go-Seigen-19430225-commentary-An-Younggil-8p.sgf -------------------------------------------------------------------------------- /examples/epub_game_commentary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_game_commentary/README.md -------------------------------------------------------------------------------- /examples/epub_game_commentary/acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_game_commentary/acknowledgements.md -------------------------------------------------------------------------------- /examples/epub_game_commentary/copyright.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_game_commentary/copyright.json -------------------------------------------------------------------------------- /examples/epub_game_commentary/foreword.md: -------------------------------------------------------------------------------- 1 | **This** is an *example* foreword. 2 | -------------------------------------------------------------------------------- /examples/epub_game_commentary/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_game_commentary/generate.sh -------------------------------------------------------------------------------- /examples/epub_game_commentary/glossary.md: -------------------------------------------------------------------------------- 1 | This is an example glossary 2 | 3 | * **A term**: A definition 4 | -------------------------------------------------------------------------------- /examples/epub_game_commentary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_game_commentary/index.js -------------------------------------------------------------------------------- /examples/epub_game_commentary/introduction.md: -------------------------------------------------------------------------------- 1 | A short intro to the book. 2 | -------------------------------------------------------------------------------- /examples/epub_game_commentary/preface.md: -------------------------------------------------------------------------------- 1 | This is the preface. 2 | 3 | With two paragraphs. 4 | -------------------------------------------------------------------------------- /examples/epub_problems/ebook.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/ebook.epub -------------------------------------------------------------------------------- /examples/epub_problems/epub-book.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/epub-book.yaml -------------------------------------------------------------------------------- /examples/epub_problems/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/generate.sh -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-01.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-01.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-02.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-02.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-03.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-03.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-04.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-04.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-05.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-05.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-06.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-06.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-07.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-07.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-08.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-08.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-09.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-09.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-10.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-10.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-100.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-100.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-101.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-101.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-102.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-102.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-103.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-103.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-104.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-104.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-105.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-105.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-106.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-106.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-107.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-107.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-108.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-108.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-109.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-109.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-11.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-11.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-110.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-110.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-111.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-111.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-112.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-112.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-113.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-113.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-114.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-114.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-115.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-115.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-116.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-116.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-117.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-117.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-118.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-118.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-119.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-119.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-12.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-12.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-120.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-120.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-121.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-121.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-122.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-122.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-123.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-123.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-124.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-124.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-125.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-125.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-126.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-126.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-127.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-127.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-128.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-128.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-129.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-129.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-13.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-13.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-130.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-130.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-131.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-131.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-132.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-132.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-133.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-133.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-134.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-134.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-135.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-135.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-136.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-136.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-137.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-137.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-138.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-138.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-139.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-139.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-14.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-14.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-140.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-140.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-15.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-15.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-16.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-16.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-17.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-17.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-18.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-18.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-19.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-19.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-20.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-20.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-21.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-21.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-22.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-22.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-23.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-23.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-24.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-24.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-25.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-25.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-26.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-26.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-27.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-27.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-28.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-28.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-29.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-29.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-30.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-30.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-31.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-31.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-32.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-32.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-33.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-33.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-34.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-34.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-35.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-35.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-36.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-36.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-37.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-37.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-38.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-38.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-39.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-39.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-40.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-40.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-41.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-41.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-42.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-42.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-43.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-43.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-44.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-44.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-45.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-45.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-46.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-46.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-47.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-47.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-48.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-48.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-49.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-49.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-50.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-50.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-51.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-51.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-52.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-52.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-53.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-53.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-54.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-54.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-55.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-55.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-56.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-56.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-57.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-57.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-58.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-58.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-59.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-59.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-60.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-60.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-61.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-61.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-62.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-62.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-63.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-63.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-64.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-64.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-65.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-65.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-66.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-66.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-67.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-67.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-68.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-68.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-69.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-69.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-70.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-70.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-71.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-71.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-72.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-72.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-73.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-73.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-74.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-74.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-75.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-75.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-76.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-76.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-77.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-77.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-78.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-78.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-79.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-79.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-80.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-80.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-81.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-81.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-82.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-82.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-83.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-83.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-84.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-84.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-85.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-85.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-86.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-86.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-87.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-87.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-88.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-88.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-89.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-89.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-90.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-90.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-91.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-91.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-92.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-92.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-93.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-93.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-94.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-94.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-95.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-95.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-96.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-96.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-97.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-97.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-98.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-98.sgf -------------------------------------------------------------------------------- /examples/epub_problems/problems/ggg-easy-99.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/problems/ggg-easy-99.sgf -------------------------------------------------------------------------------- /examples/epub_problems/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/validate.sh -------------------------------------------------------------------------------- /examples/epub_problems/zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/epub_problems/zip.sh -------------------------------------------------------------------------------- /examples/game_commentary/Fujisawa-Hosai-vs-Go-Seigen-19430225-commentary-An-Younggil-8p.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/game_commentary/Fujisawa-Hosai-vs-Go-Seigen-19430225-commentary-An-Younggil-8p.sgf -------------------------------------------------------------------------------- /examples/game_commentary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/game_commentary/README.md -------------------------------------------------------------------------------- /examples/game_commentary/acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/game_commentary/acknowledgements.md -------------------------------------------------------------------------------- /examples/game_commentary/copyright.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/game_commentary/copyright.json -------------------------------------------------------------------------------- /examples/game_commentary/default_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/game_commentary/default_gen.sh -------------------------------------------------------------------------------- /examples/game_commentary/foreword.md: -------------------------------------------------------------------------------- 1 | **This** is an *example* foreword. 2 | -------------------------------------------------------------------------------- /examples/game_commentary/game_commentary.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/game_commentary/game_commentary.pdf -------------------------------------------------------------------------------- /examples/game_commentary/game_commentary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/game_commentary/game_commentary.tex -------------------------------------------------------------------------------- /examples/game_commentary/game_commentary.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/game_commentary/game_commentary.toc -------------------------------------------------------------------------------- /examples/game_commentary/gen_with_box_cropping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/game_commentary/gen_with_box_cropping.sh -------------------------------------------------------------------------------- /examples/game_commentary/glossary.md: -------------------------------------------------------------------------------- 1 | This is an example glossary 2 | 3 | * **A term**: A definition 4 | -------------------------------------------------------------------------------- /examples/game_commentary/igo_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/game_commentary/igo_gen.sh -------------------------------------------------------------------------------- /examples/game_commentary/introduction.md: -------------------------------------------------------------------------------- 1 | A short intro to the book. 2 | -------------------------------------------------------------------------------- /examples/game_commentary/octavo_cropping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/game_commentary/octavo_cropping.sh -------------------------------------------------------------------------------- /examples/game_commentary/pdfx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/game_commentary/pdfx.sh -------------------------------------------------------------------------------- /examples/game_commentary/pdfx_octavo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/game_commentary/pdfx_octavo.sh -------------------------------------------------------------------------------- /examples/game_commentary/preface.md: -------------------------------------------------------------------------------- 1 | This is the preface. 2 | 3 | With two paragraphs. 4 | -------------------------------------------------------------------------------- /examples/multi_type_ebook/multi_type_ebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/multi_type_ebook/multi_type_ebook.js -------------------------------------------------------------------------------- /examples/problem_book/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/README.md -------------------------------------------------------------------------------- /examples/problem_book/ebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/ebook.js -------------------------------------------------------------------------------- /examples/problem_book/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/generate.sh -------------------------------------------------------------------------------- /examples/problem_book/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/index.js -------------------------------------------------------------------------------- /examples/problem_book/problem_book.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problem_book.pdf -------------------------------------------------------------------------------- /examples/problem_book/problem_book.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problem_book.tex -------------------------------------------------------------------------------- /examples/problem_book/problem_book.toc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-01.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-01.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-02.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-02.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-03.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-03.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-04.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-04.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-05.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-05.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-06.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-06.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-07.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-07.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-08.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-08.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-09.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-09.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-10.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-10.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-100.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-100.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-101.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-101.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-102.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-102.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-103.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-103.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-104.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-104.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-105.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-105.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-106.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-106.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-107.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-107.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-108.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-108.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-109.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-109.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-11.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-11.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-110.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-110.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-111.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-111.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-112.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-112.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-113.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-113.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-114.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-114.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-115.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-115.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-116.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-116.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-117.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-117.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-118.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-118.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-119.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-119.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-12.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-12.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-120.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-120.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-121.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-121.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-122.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-122.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-123.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-123.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-124.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-124.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-125.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-125.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-126.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-126.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-127.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-127.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-128.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-128.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-129.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-129.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-13.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-13.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-130.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-130.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-131.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-131.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-132.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-132.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-133.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-133.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-134.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-134.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-135.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-135.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-136.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-136.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-137.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-137.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-138.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-138.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-139.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-139.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-14.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-14.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-140.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-140.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-15.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-15.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-16.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-16.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-17.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-17.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-18.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-18.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-19.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-19.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-20.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-20.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-21.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-21.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-22.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-22.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-23.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-23.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-24.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-24.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-25.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-25.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-26.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-26.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-27.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-27.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-28.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-28.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-29.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-29.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-30.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-30.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-31.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-31.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-32.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-32.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-33.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-33.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-34.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-34.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-35.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-35.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-36.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-36.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-37.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-37.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-38.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-38.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-39.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-39.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-40.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-40.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-41.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-41.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-42.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-42.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-43.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-43.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-44.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-44.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-45.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-45.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-46.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-46.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-47.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-47.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-48.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-48.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-49.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-49.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-50.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-50.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-51.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-51.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-52.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-52.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-53.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-53.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-54.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-54.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-55.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-55.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-56.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-56.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-57.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-57.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-58.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-58.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-59.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-59.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-60.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-60.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-61.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-61.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-62.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-62.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-63.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-63.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-64.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-64.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-65.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-65.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-66.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-66.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-67.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-67.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-68.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-68.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-69.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-69.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-70.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-70.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-71.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-71.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-72.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-72.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-73.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-73.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-74.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-74.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-75.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-75.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-76.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-76.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-77.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-77.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-78.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-78.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-79.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-79.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-80.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-80.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-81.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-81.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-82.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-82.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-83.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-83.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-84.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-84.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-85.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-85.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-86.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-86.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-87.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-87.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-88.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-88.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-89.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-89.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-90.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-90.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-91.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-91.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-92.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-92.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-93.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-93.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-94.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-94.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-95.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-95.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-96.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-96.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-97.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-97.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-98.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-98.sgf -------------------------------------------------------------------------------- /examples/problem_book/problems/ggg-easy-99.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/problem_book/problems/ggg-easy-99.sgf -------------------------------------------------------------------------------- /examples/yearbook_example/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/yearbook_example/generate.sh -------------------------------------------------------------------------------- /examples/yearbook_example/yearbook_example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/yearbook_example/yearbook_example.pdf -------------------------------------------------------------------------------- /examples/yearbook_example/yearbook_example.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/yearbook_example/yearbook_example.sgf -------------------------------------------------------------------------------- /examples/yearbook_example/yearbook_example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/yearbook_example/yearbook_example.tex -------------------------------------------------------------------------------- /examples/yearbook_example/yearbook_example.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/yearbook_example/yearbook_example.toc -------------------------------------------------------------------------------- /examples/yearbook_example_gulee/11-20041118.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/yearbook_example_gulee/11-20041118.sgf -------------------------------------------------------------------------------- /examples/yearbook_example_gulee/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/yearbook_example_gulee/generate.sh -------------------------------------------------------------------------------- /examples/yearbook_example_gulee/yearbook_example_gulee.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/yearbook_example_gulee/yearbook_example_gulee.pdf -------------------------------------------------------------------------------- /examples/yearbook_example_gulee/yearbook_example_gulee.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/yearbook_example_gulee/yearbook_example_gulee.tex -------------------------------------------------------------------------------- /examples/yearbook_example_gulee/yearbook_example_gulee.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/yearbook_example_gulee/yearbook_example_gulee.toc -------------------------------------------------------------------------------- /examples/yearbook_example_spaced/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/yearbook_example_spaced/generate.sh -------------------------------------------------------------------------------- /examples/yearbook_example_spaced/yearbook_example_spaced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/yearbook_example_spaced/yearbook_example_spaced.pdf -------------------------------------------------------------------------------- /examples/yearbook_example_spaced/yearbook_example_spaced.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/yearbook_example_spaced/yearbook_example_spaced.sgf -------------------------------------------------------------------------------- /examples/yearbook_example_spaced/yearbook_example_spaced.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/yearbook_example_spaced/yearbook_example_spaced.tex -------------------------------------------------------------------------------- /examples/yearbook_example_spaced/yearbook_example_spaced.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/examples/yearbook_example_spaced/yearbook_example_spaced.toc -------------------------------------------------------------------------------- /gpub-node/gpub-concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/gpub-node/gpub-concat.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/index.js -------------------------------------------------------------------------------- /marks-demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/marks-demo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/package.json -------------------------------------------------------------------------------- /resources/ISOcoated_v2_300_eci.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/resources/ISOcoated_v2_300_eci.icc -------------------------------------------------------------------------------- /scripts/book_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/scripts/book_gen.js -------------------------------------------------------------------------------- /scripts/defs/filez.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/scripts/defs/filez.js -------------------------------------------------------------------------------- /scripts/defs/flagz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/scripts/defs/flagz.js -------------------------------------------------------------------------------- /scripts/defs/glift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/scripts/defs/glift.js -------------------------------------------------------------------------------- /scripts/defs/gpub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/scripts/defs/gpub.js -------------------------------------------------------------------------------- /scripts/manip/autonumberer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/scripts/manip/autonumberer.js -------------------------------------------------------------------------------- /scripts/manip/sgf_rebaser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/scripts/manip/sgf_rebaser.js -------------------------------------------------------------------------------- /scripts/manip/to_sgf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/scripts/manip/to_sgf.js -------------------------------------------------------------------------------- /scripts/sgf_merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/scripts/sgf_merge.js -------------------------------------------------------------------------------- /scripts/spec_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/scripts/spec_gen.js -------------------------------------------------------------------------------- /scripts/test_import.js: -------------------------------------------------------------------------------- 1 | gpub = require('../index.js') 2 | 3 | console.log(gpub.create({ 4 | sgfs: ["(;GM[1]C[Try these Problems out!])"] 5 | })); 6 | -------------------------------------------------------------------------------- /src/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/api/api.js -------------------------------------------------------------------------------- /src/api/api_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/api/api_test.js -------------------------------------------------------------------------------- /src/api/fluent_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/api/fluent_api.js -------------------------------------------------------------------------------- /src/api/fluent_api_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/api/fluent_api_test.js -------------------------------------------------------------------------------- /src/book-legacy/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book-legacy/book.js -------------------------------------------------------------------------------- /src/book-legacy/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book-legacy/context.js -------------------------------------------------------------------------------- /src/book-legacy/context_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book-legacy/context_test.js -------------------------------------------------------------------------------- /src/book-legacy/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book-legacy/generator.js -------------------------------------------------------------------------------- /src/book-legacy/generator_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book-legacy/generator_test.js -------------------------------------------------------------------------------- /src/book-legacy/latex/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book-legacy/latex/context.js -------------------------------------------------------------------------------- /src/book-legacy/latex/context_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book-legacy/latex/context_test.js -------------------------------------------------------------------------------- /src/book-legacy/latex/latex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book-legacy/latex/latex.js -------------------------------------------------------------------------------- /src/book-legacy/latex/latex_generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book-legacy/latex/latex_generator.js -------------------------------------------------------------------------------- /src/book-legacy/latex/latex_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book-legacy/latex/latex_template.js -------------------------------------------------------------------------------- /src/book-legacy/latex/latex_template_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book-legacy/latex/latex_template_test.js -------------------------------------------------------------------------------- /src/book-legacy/latex/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book-legacy/latex/options.js -------------------------------------------------------------------------------- /src/book-legacy/latex/paging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book-legacy/latex/paging.js -------------------------------------------------------------------------------- /src/book/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/book.js -------------------------------------------------------------------------------- /src/book/book_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/book_file.js -------------------------------------------------------------------------------- /src/book/book_maker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/book_maker.js -------------------------------------------------------------------------------- /src/book/book_maker_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/book_maker_test.js -------------------------------------------------------------------------------- /src/book/epub/contents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/epub/contents.js -------------------------------------------------------------------------------- /src/book/epub/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/epub/css.js -------------------------------------------------------------------------------- /src/book/epub/css_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/epub/css_test.js -------------------------------------------------------------------------------- /src/book/epub/epub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/epub/epub.js -------------------------------------------------------------------------------- /src/book/epub/epub_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/epub/epub_test.js -------------------------------------------------------------------------------- /src/book/epub/file_builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/epub/file_builder.js -------------------------------------------------------------------------------- /src/book/epub/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/epub/nav.js -------------------------------------------------------------------------------- /src/book/epub/nav_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/epub/nav_test.js -------------------------------------------------------------------------------- /src/book/epub/opf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/epub/opf.js -------------------------------------------------------------------------------- /src/book/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/format.js -------------------------------------------------------------------------------- /src/book/format_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/format_test.js -------------------------------------------------------------------------------- /src/book/frontmatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/frontmatter.js -------------------------------------------------------------------------------- /src/book/frontmatter_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/frontmatter_test.js -------------------------------------------------------------------------------- /src/book/latex/latex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/latex/latex.js -------------------------------------------------------------------------------- /src/book/latex/latex_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/latex/latex_test.js -------------------------------------------------------------------------------- /src/book/latex/markdown_renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/latex/markdown_renderer.js -------------------------------------------------------------------------------- /src/book/latex/markdown_renderer_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/latex/markdown_renderer_test.js -------------------------------------------------------------------------------- /src/book/latex/pdfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/latex/pdfx.js -------------------------------------------------------------------------------- /src/book/latex/pdfx_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/latex/pdfx_test.js -------------------------------------------------------------------------------- /src/book/page_size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/page_size.js -------------------------------------------------------------------------------- /src/book/page_size_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/book/page_size_test.js -------------------------------------------------------------------------------- /src/diagrams/diagram_def.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/diagram_def.js -------------------------------------------------------------------------------- /src/diagrams/diagram_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/diagram_type.js -------------------------------------------------------------------------------- /src/diagrams/diagrams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/diagrams.js -------------------------------------------------------------------------------- /src/diagrams/gnos/gnos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/gnos/gnos.js -------------------------------------------------------------------------------- /src/diagrams/gnos/gnos_renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/gnos/gnos_renderer.js -------------------------------------------------------------------------------- /src/diagrams/gnos/gnos_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/gnos/gnos_test.js -------------------------------------------------------------------------------- /src/diagrams/gnos/symbol_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/gnos/symbol_map.js -------------------------------------------------------------------------------- /src/diagrams/gooe/gooe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/gooe/gooe.js -------------------------------------------------------------------------------- /src/diagrams/gooe/gooe_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/gooe/gooe_test.js -------------------------------------------------------------------------------- /src/diagrams/gooe/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/gooe/init.js -------------------------------------------------------------------------------- /src/diagrams/gooe/symbol_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/gooe/symbol_map.js -------------------------------------------------------------------------------- /src/diagrams/gpub_ascii/gpub_ascii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/gpub_ascii/gpub_ascii.js -------------------------------------------------------------------------------- /src/diagrams/gpub_ascii/symbol_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/gpub_ascii/symbol_map.js -------------------------------------------------------------------------------- /src/diagrams/igo/igo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/igo/igo.js -------------------------------------------------------------------------------- /src/diagrams/igo/igo_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/igo/igo_init.js -------------------------------------------------------------------------------- /src/diagrams/igo/igo_intersections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/igo/igo_intersections.js -------------------------------------------------------------------------------- /src/diagrams/igo/igo_intersections_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/igo/igo_intersections_test.js -------------------------------------------------------------------------------- /src/diagrams/igo/igo_renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/igo/igo_renderer.js -------------------------------------------------------------------------------- /src/diagrams/igo/igo_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/igo/igo_test.js -------------------------------------------------------------------------------- /src/diagrams/inline_label_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/inline_label_test.js -------------------------------------------------------------------------------- /src/diagrams/pdf/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/pdf/pdf.js -------------------------------------------------------------------------------- /src/diagrams/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/renderer.js -------------------------------------------------------------------------------- /src/diagrams/senseis_ascii/senseis_ascii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/senseis_ascii/senseis_ascii.js -------------------------------------------------------------------------------- /src/diagrams/senseis_ascii/senseis_ascii_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/senseis_ascii/senseis_ascii_test.js -------------------------------------------------------------------------------- /src/diagrams/senseis_ascii/symbol_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/senseis_ascii/symbol_map.js -------------------------------------------------------------------------------- /src/diagrams/smartgo/smartgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/smartgo/smartgo.js -------------------------------------------------------------------------------- /src/diagrams/smartgo/smartgo_renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/smartgo/smartgo_renderer.js -------------------------------------------------------------------------------- /src/diagrams/smartgo/smartgo_renderer_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/smartgo/smartgo_renderer_test.js -------------------------------------------------------------------------------- /src/diagrams/smartgo/symbol_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/smartgo/symbol_table.js -------------------------------------------------------------------------------- /src/diagrams/svg/lines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/svg/lines.js -------------------------------------------------------------------------------- /src/diagrams/svg/marks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/svg/marks.js -------------------------------------------------------------------------------- /src/diagrams/svg/starpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/svg/starpoints.js -------------------------------------------------------------------------------- /src/diagrams/svg/stones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/svg/stones.js -------------------------------------------------------------------------------- /src/diagrams/svg/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/svg/svg.js -------------------------------------------------------------------------------- /src/diagrams/svg/svg_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/svg/svg_options.js -------------------------------------------------------------------------------- /src/diagrams/svg/svg_renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/svg/svg_renderer.js -------------------------------------------------------------------------------- /src/diagrams/svg/svg_renderer_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/svg/svg_renderer_test.js -------------------------------------------------------------------------------- /src/diagrams/svg/svg_style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/diagrams/svg/svg_style.js -------------------------------------------------------------------------------- /src/gpub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/gpub.js -------------------------------------------------------------------------------- /src/gpub_global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/gpub_global.js -------------------------------------------------------------------------------- /src/options/diagram_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/options/diagram_options.js -------------------------------------------------------------------------------- /src/options/diagram_options_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/options/diagram_options_test.js -------------------------------------------------------------------------------- /src/options/frontmatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/options/frontmatter.js -------------------------------------------------------------------------------- /src/options/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/options/metadata.js -------------------------------------------------------------------------------- /src/options/metadata_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/options/metadata_test.js -------------------------------------------------------------------------------- /src/options/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/options/options.js -------------------------------------------------------------------------------- /src/options/options_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/options/options_test.js -------------------------------------------------------------------------------- /src/options/raw_grouping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/options/raw_grouping.js -------------------------------------------------------------------------------- /src/options/spec_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/options/spec_options.js -------------------------------------------------------------------------------- /src/options/spec_options_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/options/spec_options_test.js -------------------------------------------------------------------------------- /src/options/template_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/options/template_options.js -------------------------------------------------------------------------------- /src/options/template_options_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/options/template_options_test.js -------------------------------------------------------------------------------- /src/spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/README.md -------------------------------------------------------------------------------- /src/spec/game_commentary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/game_commentary.js -------------------------------------------------------------------------------- /src/spec/game_commentary_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/game_commentary_test.js -------------------------------------------------------------------------------- /src/spec/generated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/generated.js -------------------------------------------------------------------------------- /src/spec/grouping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/grouping.js -------------------------------------------------------------------------------- /src/spec/idgen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/idgen.js -------------------------------------------------------------------------------- /src/spec/idgen_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/idgen_test.js -------------------------------------------------------------------------------- /src/spec/position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/position.js -------------------------------------------------------------------------------- /src/spec/position_overrider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/position_overrider.js -------------------------------------------------------------------------------- /src/spec/preprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/preprocess.js -------------------------------------------------------------------------------- /src/spec/preprocess_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/preprocess_test.js -------------------------------------------------------------------------------- /src/spec/problem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/problem.js -------------------------------------------------------------------------------- /src/spec/problem_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/problem_test.js -------------------------------------------------------------------------------- /src/spec/processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/processor.js -------------------------------------------------------------------------------- /src/spec/processor_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/processor_test.js -------------------------------------------------------------------------------- /src/spec/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/spec.js -------------------------------------------------------------------------------- /src/spec/spec_def.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/spec_def.js -------------------------------------------------------------------------------- /src/spec/spec_def_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/spec_def_test.js -------------------------------------------------------------------------------- /src/spec/spec_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/spec/spec_test.js -------------------------------------------------------------------------------- /src/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/templates/README.md -------------------------------------------------------------------------------- /src/templates/game_commentary_ebook/game_commentary_ebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/templates/game_commentary_ebook/game_commentary_ebook.js -------------------------------------------------------------------------------- /src/templates/game_commentary_ebook/gce_css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/templates/game_commentary_ebook/gce_css.js -------------------------------------------------------------------------------- /src/templates/game_commentary_ebook/templater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/templates/game_commentary_ebook/templater.js -------------------------------------------------------------------------------- /src/templates/problem_ebook/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/templates/problem_ebook/css.js -------------------------------------------------------------------------------- /src/templates/problem_ebook/problem_ebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/templates/problem_ebook/problem_ebook.js -------------------------------------------------------------------------------- /src/templates/problem_ebook/templater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/templates/problem_ebook/templater.js -------------------------------------------------------------------------------- /src/templates/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/templates/templates.js -------------------------------------------------------------------------------- /src/util/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/util/buffer.js -------------------------------------------------------------------------------- /src/util/buffer_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/util/buffer_test.js -------------------------------------------------------------------------------- /src/util/movetree_cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/util/movetree_cache.js -------------------------------------------------------------------------------- /src/util/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/util/size.js -------------------------------------------------------------------------------- /src/util/size_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/util/size_test.js -------------------------------------------------------------------------------- /src/util/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/src/util/util.js -------------------------------------------------------------------------------- /test/htmltests/GPubQunitTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/htmltests/GPubQunitTest.html -------------------------------------------------------------------------------- /test/libs/markdown-0.6.0-beta1/Changes.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/libs/markdown-0.6.0-beta1/Changes.markdown -------------------------------------------------------------------------------- /test/libs/markdown-0.6.0-beta1/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/libs/markdown-0.6.0-beta1/README.markdown -------------------------------------------------------------------------------- /test/libs/markdown-0.6.0-beta1/bin/md2html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/libs/markdown-0.6.0-beta1/bin/md2html.js -------------------------------------------------------------------------------- /test/libs/markdown-0.6.0-beta1/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/libs/markdown-0.6.0-beta1/lib/index.js -------------------------------------------------------------------------------- /test/libs/markdown-0.6.0-beta1/lib/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/libs/markdown-0.6.0-beta1/lib/markdown.js -------------------------------------------------------------------------------- /test/libs/markdown-0.6.0-beta1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/libs/markdown-0.6.0-beta1/package.json -------------------------------------------------------------------------------- /test/libs/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/libs/qunit.css -------------------------------------------------------------------------------- /test/libs/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/libs/qunit.js -------------------------------------------------------------------------------- /test/templates/data/glift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/templates/data/glift.js -------------------------------------------------------------------------------- /test/templates/data/html_book_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/templates/data/html_book_template.html -------------------------------------------------------------------------------- /test/testdata/9x9prob.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/testdata/9x9prob.sgf -------------------------------------------------------------------------------- /test/testdata/ajax3_13.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/testdata/ajax3_13.sgf -------------------------------------------------------------------------------- /test/testdata/ajax_problem.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/testdata/ajax_problem.sgf -------------------------------------------------------------------------------- /test/testdata/ajax_problem2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/testdata/ajax_problem2.sgf -------------------------------------------------------------------------------- /test/testdata/easy.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/testdata/easy.sgf -------------------------------------------------------------------------------- /test/testdata/ggg-easy-44.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/testdata/ggg-easy-44.sgf -------------------------------------------------------------------------------- /test/testdata/gogameguru_commentary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/testdata/gogameguru_commentary.js -------------------------------------------------------------------------------- /test/testdata/kogos3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/testdata/kogos3.js -------------------------------------------------------------------------------- /test/testdata/problem10.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/testdata/problem10.sgf -------------------------------------------------------------------------------- /test/testdata/problem9.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/testdata/problem9.sgf -------------------------------------------------------------------------------- /test/testdata/sgfs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/testdata/sgfs.js -------------------------------------------------------------------------------- /test/testdata/tygem_example.gib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/testdata/tygem_example.gib -------------------------------------------------------------------------------- /test/testdata/tygem_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/test/testdata/tygem_example.js -------------------------------------------------------------------------------- /tools/epubcheck/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/COPYING.txt -------------------------------------------------------------------------------- /tools/epubcheck/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/README.txt -------------------------------------------------------------------------------- /tools/epubcheck/THIRD-PARTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/THIRD-PARTY.txt -------------------------------------------------------------------------------- /tools/epubcheck/epubcheck.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/epubcheck.jar -------------------------------------------------------------------------------- /tools/epubcheck/lib/Saxon-HE-9.5.1-5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/lib/Saxon-HE-9.5.1-5.jar -------------------------------------------------------------------------------- /tools/epubcheck/lib/common-image-3.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/lib/common-image-3.1.2.jar -------------------------------------------------------------------------------- /tools/epubcheck/lib/common-io-3.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/lib/common-io-3.1.2.jar -------------------------------------------------------------------------------- /tools/epubcheck/lib/common-lang-3.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/lib/common-lang-3.1.2.jar -------------------------------------------------------------------------------- /tools/epubcheck/lib/commons-compress-1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/lib/commons-compress-1.5.jar -------------------------------------------------------------------------------- /tools/epubcheck/lib/guava-14.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/lib/guava-14.0.1.jar -------------------------------------------------------------------------------- /tools/epubcheck/lib/imageio-core-3.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/lib/imageio-core-3.1.2.jar -------------------------------------------------------------------------------- /tools/epubcheck/lib/imageio-jpeg-3.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/lib/imageio-jpeg-3.1.2.jar -------------------------------------------------------------------------------- /tools/epubcheck/lib/imageio-metadata-3.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/lib/imageio-metadata-3.1.2.jar -------------------------------------------------------------------------------- /tools/epubcheck/lib/jackson-core-asl-1.9.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/lib/jackson-core-asl-1.9.12.jar -------------------------------------------------------------------------------- /tools/epubcheck/lib/jackson-mapper-asl-1.9.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/lib/jackson-mapper-asl-1.9.12.jar -------------------------------------------------------------------------------- /tools/epubcheck/lib/jing-20120724.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/lib/jing-20120724.0.0.jar -------------------------------------------------------------------------------- /tools/epubcheck/lib/sac-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/lib/sac-1.3.jar -------------------------------------------------------------------------------- /tools/epubcheck/licenses/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/licenses/Apache-2.0.txt -------------------------------------------------------------------------------- /tools/epubcheck/licenses/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/licenses/BSD-3-Clause.txt -------------------------------------------------------------------------------- /tools/epubcheck/licenses/MPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/licenses/MPL-1.0.txt -------------------------------------------------------------------------------- /tools/epubcheck/licenses/W3C.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/epubcheck/licenses/W3C.txt -------------------------------------------------------------------------------- /tools/kindlegen/KindleGen_Mac_i386_v2_9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/kindlegen/KindleGen_Mac_i386_v2_9.zip -------------------------------------------------------------------------------- /tools/kindlegen/docs/english/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/kindlegen/docs/english/Readme.txt -------------------------------------------------------------------------------- /tools/kindlegen/docs/english/Release Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/kindlegen/docs/english/Release Notes.html -------------------------------------------------------------------------------- /tools/kindlegen/docs/english/known issues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/kindlegen/docs/english/known issues.txt -------------------------------------------------------------------------------- /tools/kindlegen/kindlegen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/kindlegen/kindlegen -------------------------------------------------------------------------------- /tools/kindlegen/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artasparks/gpub/HEAD/tools/kindlegen/manual.html --------------------------------------------------------------------------------