From b9fa6c3051f9faa46fb65a04c22b05ba68c23452 Mon Sep 17 00:00:00 2001 From: jdaviescoates Date: Thu, 8 Sep 2016 19:38:59 +0100 Subject: [PATCH 01/18] Update examples.md (#1522) By adding the Loomio and Enspiral handbook examples --- docs/examples.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/examples.md b/docs/examples.md index a748c333d..2bfcdb343 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -23,5 +23,7 @@ More than 50,000 books have been published on [GitBook.com](https://www.gitbook. ### Documentation - [DuckDuckHack Documentation](http://docs.duckduckhack.com) by [DuckDuckGo](https://duckduckgo.com/about) +- [Loomio Handbook](http://loomio.coop/) by [Loomio](https://www.loomio.org/) +- [Enspiral Handbook](http://handbook.enspiral.com/) by [Enspiral](http://enspiral.com/) - This documentation From 2e8e4f63d78c8d908f7ea4ea095e6d27f6fc6fe0 Mon Sep 17 00:00:00 2001 From: Peter B Smith Date: Wed, 28 Sep 2016 03:49:29 -0400 Subject: [PATCH 02/18] fixing a typo of the word "publishing" (#1536) --- docs/plugins/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/plugins/testing.md b/docs/plugins/testing.md index 9562b2674..c832f11f3 100644 --- a/docs/plugins/testing.md +++ b/docs/plugins/testing.md @@ -2,7 +2,7 @@ ### Testing your plugin locally -Testing your plugin on your book before plushing it is possible using [npm link](https://docs.npmjs.com/cli/link). +Testing your plugin on your book before publishing it is possible using [npm link](https://docs.npmjs.com/cli/link). In the plugin's folder, run: From 7938ee8ec6cabd893187d0527feb842fd1270667 Mon Sep 17 00:00:00 2001 From: Johan Preynat Date: Wed, 28 Sep 2016 10:32:14 +0200 Subject: [PATCH 03/18] Use nunjucks@2.5.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f7f17b0db..c962fbc82 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "moment": "2.13.0", "npm": "3.9.2", "npmi": "2.0.1", - "nunjucks": "2.4.2", + "nunjucks": "2.5.2", "nunjucks-do": "1.0.0", "object-path": "^0.9.2", "omit-keys": "^0.1.0", From 09782b964b3a8c194614f66a62afe9a6566c5827 Mon Sep 17 00:00:00 2001 From: Samy Pesse Date: Wed, 28 Sep 2016 13:10:47 +0200 Subject: [PATCH 04/18] Update theme-default@1.0.6 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c962fbc82..9e5cc82c0 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ "gitbook-plugin-lunr": "1.2.0", "gitbook-plugin-search": "2.2.1", "gitbook-plugin-sharing": "1.0.2", - "gitbook-plugin-theme-default": "1.0.5", + "gitbook-plugin-theme-default": "1.0.6", "github-slugid": "1.0.1", "graceful-fs": "4.1.4", "i18n-t": "1.0.1", From 33d7e022e620dc99bc5f5a5b449c9cea0bdc6683 Mon Sep 17 00:00:00 2001 From: Samy Pesse Date: Wed, 28 Sep 2016 13:21:24 +0200 Subject: [PATCH 05/18] Bump version to 3.2.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9e5cc82c0..04be84b9a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gitbook", - "version": "3.2.0", + "version": "3.2.1", "homepage": "https://www.gitbook.com", "description": "Library and cmd utility to generate GitBooks", "main": "lib/index.js", From 33ff60cee7121dea2c172a2857cba411b01abe3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samy=20Pess=C3=A9?= Date: Wed, 28 Sep 2016 15:56:36 +0200 Subject: [PATCH 06/18] Add changes for 3.2.1 --- CHANGES.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 000750f94..199e5dd44 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 3.2.1 +- Fix bug on Firefox when navigating to an url containing an hash +- Update nunjucks to fix JS error when page contains a lot of templating blocks + ## 3.2.0 - Switch markdown parser from `kramed` to `markup-it` - Fix support of `|` in tables From c978f0ab217294bbf0899e36b918b45c084d2d0c Mon Sep 17 00:00:00 2001 From: Johan Preynat Date: Sat, 1 Oct 2016 21:47:08 +0200 Subject: [PATCH 07/18] Add comment --- lib/parse/parsePageFromString.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/parse/parsePageFromString.js b/lib/parse/parsePageFromString.js index 80c147bb8..e64664b6f 100644 --- a/lib/parse/parsePageFromString.js +++ b/lib/parse/parsePageFromString.js @@ -9,6 +9,7 @@ var direction = require('direction'); * @return {Page} */ function parsePageFromString(page, content) { + // Parse page YAML var parsed = fm(content); return page.merge({ From cb3d6a7f0192f6b67e8cbf22dcf4576ff8c85a70 Mon Sep 17 00:00:00 2001 From: Johan Preynat Date: Sat, 1 Oct 2016 21:47:25 +0200 Subject: [PATCH 08/18] Correctly handle page parsing errors --- lib/parse/parsePagesList.js | 31 +++++++++++++++++++++++++------ 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/lib/parse/parsePagesList.js b/lib/parse/parsePagesList.js index 1cf42f57c..fa15a9df9 100644 --- a/lib/parse/parsePagesList.js +++ b/lib/parse/parsePagesList.js @@ -11,15 +11,26 @@ var parsePage = require('./parsePage'); @param {Book} book @param {String} filePath - @return {Page} + @return {Page?} */ function parseFilePage(book, filePath) { var fs = book.getContentFS(); return fs.statFile(filePath) - .then(function(file) { - var page = Page.createForFile(file); - return parsePage(book, page); + .then( + function(file) { + var page = Page.createForFile(file); + return parsePage(book, page); + }, + function(err) { + // file doesn't exist + return null; + } + ) + .fail(function(err) { + var logger = book.getLogger(); + logger.error.ln('error while parsing page "' + filePath + '":'); + throw err; }); } @@ -48,9 +59,12 @@ function parsePagesList(book) { return parseFilePage(book, filepath) .then(function(page) { - map = map.set(filepath, page); - }, function() { // file doesn't exist + if (!page) { + return; + } + + map = map.set(filepath, page); }); }) ) @@ -65,6 +79,11 @@ function parsePagesList(book) { return parseFilePage(book, file.getPath()) .then(function(page) { + // file doesn't exist + if (!page) { + return; + } + map = map.set(file.getPath(), page); }); }) From 5238fa352cf0a532a5de791d9c852fd14da18736 Mon Sep 17 00:00:00 2001 From: Johan Preynat Date: Sat, 1 Oct 2016 22:30:43 +0200 Subject: [PATCH 09/18] Rollback to use gitbook-markdown@1.3.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 04be84b9a..ac6c522fe 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "fresh-require": "1.0.3", "front-matter": "^2.1.0", "gitbook-asciidoc": "1.2.2", - "gitbook-markdown": "2.0.1", + "gitbook-markdown": "1.3.2", "gitbook-plugin-fontsettings": "2.0.0", "gitbook-plugin-highlight": "2.0.2", "gitbook-plugin-livereload": "0.0.1", From ad425b9772c73df297cfe9c024e7dd99e9bc4c75 Mon Sep 17 00:00:00 2001 From: Johan Preynat Date: Sat, 1 Oct 2016 22:35:54 +0200 Subject: [PATCH 10/18] Bump version to 3.2.2 --- CHANGES.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 199e5dd44..a8b26d5c6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 3.2.2 +- Fix catching parsing errors leading to possible missing pages in generated book +- Rollback markdown parser to `kramed` until `markup-it` is stable enough + ## 3.2.1 - Fix bug on Firefox when navigating to an url containing an hash - Update nunjucks to fix JS error when page contains a lot of templating blocks diff --git a/package.json b/package.json index ac6c522fe..3c379e043 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gitbook", - "version": "3.2.1", + "version": "3.2.2", "homepage": "https://www.gitbook.com", "description": "Library and cmd utility to generate GitBooks", "main": "lib/index.js", From d6de8f4173ca75b343882735544eb826c671289f Mon Sep 17 00:00:00 2001 From: jdaviescoates Date: Fri, 7 Oct 2016 10:40:06 +0100 Subject: [PATCH 11/18] Update examples.md with Loomio guide (#1550) --- docs/examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples.md b/docs/examples.md index 2bfcdb343..10779a8ce 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -23,7 +23,7 @@ More than 50,000 books have been published on [GitBook.com](https://www.gitbook. ### Documentation - [DuckDuckHack Documentation](http://docs.duckduckhack.com) by [DuckDuckGo](https://duckduckgo.com/about) -- [Loomio Handbook](http://loomio.coop/) by [Loomio](https://www.loomio.org/) +- [Loomio Handbook](http://loomio.coop/) and [guide to using Loomio](https://loomio.gitbooks.io/manual/content/en/index.html) both by [Loomio](https://www.loomio.org/) - [Enspiral Handbook](http://handbook.enspiral.com/) by [Enspiral](http://enspiral.com/) - This documentation From b564ef658001f3f7ceb59bbe01a4c99d4ab79509 Mon Sep 17 00:00:00 2001 From: Hur jung ju Date: Thu, 20 Oct 2016 00:56:03 +0900 Subject: [PATCH 12/18] Add 'emphasis' in 'SUMMARY.md' and trimming (#1566) --- docs/README.md | 3 +-- docs/SUMMARY.md | 3 +-- docs/examples.md | 1 - docs/faq.md | 2 +- docs/pages.md | 3 +-- docs/plugins/filters.md | 2 +- docs/plugins/hooks.md | 1 - docs/plugins/testing.md | 1 - docs/setup.md | 1 - docs/syntax/asciidoc.md | 7 +++---- docs/templating/README.md | 4 ++-- docs/templating/builtin.md | 3 ++- docs/templating/variables.md | 2 +- docs/themes/README.md | 2 +- 14 files changed, 14 insertions(+), 21 deletions(-) diff --git a/docs/README.md b/docs/README.md index d62623173..cab9ec635 100644 --- a/docs/README.md +++ b/docs/README.md @@ -18,9 +18,8 @@ Check out the [GitBook Community Slack Channel](https://slack.gitbook.com), Stay ### FAQ -Some questions are frequently asked. If you have a problem you should [check this out](faq.md) first. +Some questions are frequently asked. If you have a problem you should [check this out](faq.md) first. ### Contribute to this documentation You can contribute to improve this documentation on [GitHub](https://github.com/GitbookIO/gitbook) by signaling issues or proposing changes. - diff --git a/docs/SUMMARY.md b/docs/SUMMARY.md index cf98051c1..354860541 100644 --- a/docs/SUMMARY.md +++ b/docs/SUMMARY.md @@ -15,6 +15,7 @@ * [Markdown](syntax/markdown.md) * [Headings](syntax/markdown.md#headings) * [Paragraphs](syntax/markdown.md#paragraphs) + * [Emphasis](syntax/markdown.md#emphasis) * [Lists](syntax/markdown.md#lists) * [Links](syntax/markdown.md#links) * [Images](syntax/markdown.md#images) @@ -46,5 +47,3 @@ * [FAQ](faq.md) * [Examples](examples.md) * [Release notes](https://github.com/GitbookIO/gitbook/blob/master/CHANGES.md) - - diff --git a/docs/examples.md b/docs/examples.md index 10779a8ce..618e2f855 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -26,4 +26,3 @@ More than 50,000 books have been published on [GitBook.com](https://www.gitbook. - [Loomio Handbook](http://loomio.coop/) and [guide to using Loomio](https://loomio.gitbooks.io/manual/content/en/index.html) both by [Loomio](https://www.loomio.org/) - [Enspiral Handbook](http://handbook.enspiral.com/) by [Enspiral](http://enspiral.com/) - This documentation - diff --git a/docs/faq.md b/docs/faq.md index 3d595e0ab..9cc3824e6 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -18,7 +18,7 @@ Any text editor should work! But we advise using the [GitBook Editor](https://ww The GitBook format supports right to left, and bi-directional writing. To enable it, you either need to specify a language (ex: `ar`), or force GitBook to use RTL in your `book.json`: -``` json +```json { "language": "ar", "direction": "rtl" diff --git a/docs/pages.md b/docs/pages.md index 127dcae62..7e3224021 100644 --- a/docs/pages.md +++ b/docs/pages.md @@ -40,7 +40,6 @@ Chapters in the Table of Contents can be pointing to specific part of a file usi * [Better tools for authors](part2/README.md#tools) ``` - ##### Parts The Table of Contents can be divided into parts separated by headings or horizontal lines: @@ -73,7 +72,7 @@ Most of the files for GitBook use the Markdown syntax by default. GitBook infers ##### Example of a chapter file -``` markdown +```markdown # Title of the chapter This is a great introduction. diff --git a/docs/plugins/filters.md b/docs/plugins/filters.md index 9ee949374..53eca9aeb 100644 --- a/docs/plugins/filters.md +++ b/docs/plugins/filters.md @@ -54,4 +54,4 @@ module.exports = { } } }; -``` \ No newline at end of file +``` diff --git a/docs/plugins/hooks.md b/docs/plugins/hooks.md index 7d81b1d7c..5eb0e2ff5 100644 --- a/docs/plugins/hooks.md +++ b/docs/plugins/hooks.md @@ -71,7 +71,6 @@ In the `page` hook, `page.content` is the HTML generated from the markdown/ascii } ``` - ### Asynchronous Operations Hooks callbacks can be asynchronous and return promises. diff --git a/docs/plugins/testing.md b/docs/plugins/testing.md index c832f11f3..4cd2c69a3 100644 --- a/docs/plugins/testing.md +++ b/docs/plugins/testing.md @@ -19,4 +19,3 @@ $ npm link gitbook-plugin- ### Unit testing on Travis [gitbook-tester](https://github.com/todvora/gitbook-tester) makes it easy to write **Node.js/Mocha** unit tests for your plugins. Using [Travis.org](https://travis.org), tests can be run on each commits/tags. - diff --git a/docs/setup.md b/docs/setup.md index 368abca8b..9300678b2 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -66,4 +66,3 @@ You can use the options `--log=debug` and `--debug` to get better error messages ``` $ gitbook build ./ --log=debug --debug ``` - diff --git a/docs/syntax/asciidoc.md b/docs/syntax/asciidoc.md index d51ebcc6f..201e8225c 100644 --- a/docs/syntax/asciidoc.md +++ b/docs/syntax/asciidoc.md @@ -12,7 +12,7 @@ This is the main entry of your book: the introduction. This file is **required** ### SUMMARY.adoc -This file defines the list of chapters and subchapters. Just like in Markdown, the `SUMMARY.adoc`'s format is simply a list of links, the name of the link is used as the chapter's name, and the target is a path to that chapter's file. +This file defines the list of chapters and subchapters. Just like in Markdown, the `SUMMARY.adoc`'s format is simply a list of links, the name of the link is used as the chapter's name, and the target is a path to that chapter's file. Subchapters are defined simply by adding a nested list to a parent chapter. @@ -60,6 +60,5 @@ observer producing a sense of wonder. A popular web programming language, used by many large websites such as Facebook. Rasmus Lerdorf originally created PHP in 1994 to power his personal homepage (PHP originally stood for "Personal Home Page" -but now stands for "PHP: Hypertext Preprocessor"). ``` - - +but now stands for "PHP: Hypertext Preprocessor"). +``` diff --git a/docs/templating/README.md b/docs/templating/README.md index bf8d2657a..ae4ec8fde 100644 --- a/docs/templating/README.md +++ b/docs/templating/README.md @@ -21,7 +21,7 @@ This looks up username from the context and displays it. Variable names can have If a value is undefined, nothing is displayed. The following all output nothing if foo is undefined: `{{ foo }}`, `{{ foo.bar }}`, `{{ foo.bar.baz }}`. -GitBook provides a set of [predefined variables](variables.md) from the context. +GitBook provides a set of [predefined variables](variables.md) from the context. ### Filters @@ -92,7 +92,7 @@ Inclusion and inheritance is detailled in the [Content References](conrefs.md) s If you want GitBook to ignore any of the special templating tags, you can use raw and anything inside of it will be output as plain text. -``` twig +```twig {% raw %} this will {{ not be processed }} {% endraw %} diff --git a/docs/templating/builtin.md b/docs/templating/builtin.md index 1f05edf8b..780b0c9d2 100644 --- a/docs/templating/builtin.md +++ b/docs/templating/builtin.md @@ -4,7 +4,8 @@ GitBook provides a serie of builtin filters and blocks to help you write templat ### Filters -`value|default(default, [boolean])`If value is strictly undefined, return default, otherwise value. If boolean is true, any JavaScript falsy value will return default (false, "", etc) +`value|default(default, [boolean])` +If value is strictly undefined, return default, otherwise value. If boolean is true, any JavaScript falsy value will return default (false, "", etc) `arr|sort(reverse, caseSens, attr)` Sort arr with JavaScript's arr.sort function. If reverse is true, result will be reversed. Sort is case-insensitive by default, but setting caseSens to true makes it case-sensitive. If attr is passed, will compare attr from each item. diff --git a/docs/templating/variables.md b/docs/templating/variables.md index 9499c8ed3..1a215de47 100644 --- a/docs/templating/variables.md +++ b/docs/templating/variables.md @@ -28,7 +28,7 @@ The following is a reference of the available data during book's parsing and the | Variable | Description | | -------- | ----------- | -| `gitbook.time` | The current time (when you run the `gitbook` command) . | +| `gitbook.time` | The current time (when you run the `gitbook` command). | | `gitbook.version` | Version of GitBook used to generate the book | ### File Variables diff --git a/docs/themes/README.md b/docs/themes/README.md index a0b138e59..d6ab68007 100644 --- a/docs/themes/README.md +++ b/docs/themes/README.md @@ -12,7 +12,7 @@ A theme is a plugin containing templates and assets. Overriding any individual t | -------- | ----------- | | `_layouts` | Main folder containing all the templates | | `_layouts/website/page.html` | Template for a normal page | -| `_layouts/ebook/page.html` | Template for a normal page during ebook generation (PDF< ePub, Mobi) | +| `_layouts/ebook/page.html` | Template for a normal page during ebook generation (PDF, ePub, Mobi) | ### Extend/Customize theme in a book From 5f0a81d18bb67c920d32c33ecde4545ea2dd5d37 Mon Sep 17 00:00:00 2001 From: Guillermo Lengemann Date: Wed, 19 Oct 2016 12:01:59 -0400 Subject: [PATCH 13/18] GNU/Linux Calibre installation instruction for ebook (#1533) Adding details to generating ebook an pdfs in GNU/Linux. --- docs/ebook.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/ebook.md b/docs/ebook.md index 693107916..104f110d6 100644 --- a/docs/ebook.md +++ b/docs/ebook.md @@ -17,6 +17,20 @@ $ gitbook mobi ./ ./mybook.mobi `ebook-convert` is required to generate ebooks (epub, mobi, pdf). +##### GNU/Linux + +Install the [Calibre application](https://calibre-ebook.com/download). + +``` +$ sudo aptitude install calibre +``` + +In some GNU/Linux distributions node is installed as nodejs, you need to manually create a symlink: + +``` +$sudo ln -s /usr/bin/nodejs /usr/bin/node +``` + ##### OS X Download the [Calibre application](https://calibre-ebook.com/download). After moving the `calibre.app` to your Applications folder create a symbolic link to the ebook-convert tool: From fd1f7a560915f98753c148f4a380c22a782c756d Mon Sep 17 00:00:00 2001 From: Jonathan Andrew Wolter Date: Sat, 17 Dec 2016 13:01:33 -0800 Subject: [PATCH 14/18] correct typo s/serie/series/ (#1638) --- docs/faq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/faq.md b/docs/faq.md index 9cc3824e6..cea686dcc 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -34,7 +34,7 @@ You should always use paths and the `.md` extensions when linking to your files, #### Can I create a GitBook in a sub-directory of my repository? -Yes, GitBooks can be created in [sub-directories](structure.md#subdirectory). GitBook.com and the CLI also looks by default in a serie of [folders](structure.md). +Yes, GitBooks can be created in [sub-directories](structure.md#subdirectory). GitBook.com and the CLI also looks by default in a series of [folders](structure.md). #### Does GitBook supports RTL languages? From 532df30db7b4b35cffc821ff3c43bfa88b8bf32c Mon Sep 17 00:00:00 2001 From: Marlon Bernardes Date: Mon, 19 Dec 2016 17:06:28 +0100 Subject: [PATCH 15/18] Minor grammar fix (#1642) --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index cab9ec635..272896dc7 100644 --- a/docs/README.md +++ b/docs/README.md @@ -4,7 +4,7 @@ This document aims to be a comprehensive guide to GitBook. It contains the full ### What is GitBook? -GitBook is a command line tool (and Node.js library) for building beautiful books using GitHub/Git and Markdown (or AsciiDoc). . This documentation has been generated using GitBook. +GitBook is a command line tool (and Node.js library) for building beautiful books using GitHub/Git and Markdown (or AsciiDoc). This documentation has been generated using GitBook. GitBook can output your content as a website ([customizable](themes/README.md) and [extensibles](plugins/README.md)) or as an ebook (PDF, ePub or Mobi). From 6a4f6eadd2557d66db82e73600a81762b22abe2c Mon Sep 17 00:00:00 2001 From: Nicolas Gaborit Date: Wed, 21 Dec 2016 15:12:48 +0100 Subject: [PATCH 16/18] Improve GitHub issue template (#1648) It is now short and simple, and redirects to the feedback repo if needed. --- .github/ISSUE_TEMPLATE.md | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 4311ae2a5..79d477e80 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,19 +1,25 @@ -Thank you for giving us your feedback! We listed some guidelines to help you: + + + + + -If possible, open separate issues for each bug report. Avoid grouping bugs that are unrelated. + ### What is the current behavior? -If the current behavior is a bug, please provide the steps to reproduce. if possible, provide the GitBook version being used (`gitbook -V`) and the system infromations (OS and version). + + + + + + + ### What is the expected behavior? -How do you think, or how would you like it should behave. -#### For GitBook.com -Provide, if possible, your username and the URL of the concerned book. ----- - -The GitBook Team + + From 8bf3241b63e3ffd22fcfc8aa3043718d76654336 Mon Sep 17 00:00:00 2001 From: Soreine Date: Wed, 21 Dec 2016 15:38:43 +0100 Subject: [PATCH 17/18] Remove fixed-size font effects in issue template --- .github/ISSUE_TEMPLATE.md | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 79d477e80..49e147afb 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,18 +1,22 @@ - - - - - + - ### What is the current behavior? - - - - - + @@ -20,6 +24,7 @@ - - - + From 64ccb6b00b4b63fa0e516d4e35351275b34f8c07 Mon Sep 17 00:00:00 2001 From: Julia Kulla-Mader Date: Thu, 22 Dec 2016 03:58:11 -0500 Subject: [PATCH 18/18] Google Analytics spelling error (#1580) --- docs/plugins/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/plugins/README.md b/docs/plugins/README.md index 4df62b8cf..cbcf82654 100644 --- a/docs/plugins/README.md +++ b/docs/plugins/README.md @@ -1,6 +1,6 @@ # Plugins -Plugins are the best way to extend GitBook functionalities (ebook and website). There exist plugins to do a lot of things: bring math formulas display support, track visits using Google Analytic, etc. +Plugins are the best way to extend GitBook functionalities (ebook and website). There exist plugins to do a lot of things: bring math formulas display support, track visits using Google Analytics, etc. ### How to find plugins?