diff --git a/content/_index.md b/content/_index.md index 92c43f6..aef2802 100644 --- a/content/_index.md +++ b/content/_index.md @@ -12,6 +12,7 @@ Welcome to **Infusion**: a pattern library builder for inclusive designers and t * Quickly include WCAG and [Inclusive Design Principles](http://inclusivedesignprinciples.org/) references * A responsive, screen reader and keyboard accessible static site as output * Automated Github Pages deployment +* Includes a single-page printable version suitable for PDF conversion {{% /ticks %}} To get started, take a look at {{% pattern "Installation" %}}. diff --git a/content/patterns/installation.md b/content/patterns/installation.md index d8f77e7..bcfa32e 100644 --- a/content/patterns/installation.md +++ b/content/patterns/installation.md @@ -1,5 +1,6 @@ +++ title = "Installation" +weight = 1 +++ **Infusion** is built using the static site engine, [Hugo](https://gohugo.io/), and NPM. The codebase is available to download on Github. Let's get set up step-by-step. diff --git a/content/patterns/library-setup.md b/content/patterns/library-setup.md index 4b89a4c..3f3c388 100644 --- a/content/patterns/library-setup.md +++ b/content/patterns/library-setup.md @@ -1,5 +1,6 @@ +++ title = "Library setup" +weight = 2 +++ By now, you should have followed the {{% pattern "Installation" %}} instructions. You should have Hugo and Node installed, and a local copy of a forked version of **Infusion**. You should also have run `npm install` in the root of that codebase. diff --git a/content/patterns/printing.md b/content/patterns/printing.md new file mode 100644 index 0000000..79e8002 --- /dev/null +++ b/content/patterns/printing.md @@ -0,0 +1,14 @@ ++++ +title = "Printing" +weight = 4 ++++ + +**Infusion**'s output site includes a one-page {{% pattern "Print version" %}} of the generated library, available at `/print-version`. So, if your library base URL is `https://yourName.github.io/your-library`, you can print the whole library — to PDF if wanted — from the following address: + +``` +https://yourName.github.io/your-library/print-version +``` + +{{% note %}} +Print styles are also provided for individual pattern pages so, if you wanted to print off a single pattern document, go ahead! +{{% /note %}} diff --git a/content/patterns/serving.md b/content/patterns/serving.md index 5da0dfa..b04a675 100644 --- a/content/patterns/serving.md +++ b/content/patterns/serving.md @@ -1,5 +1,6 @@ +++ title = "Serving" +weight = 3 +++ ## Serving locally diff --git a/content/print-version.md b/content/print-version.md index 070e9d0..9e01325 100644 --- a/content/print-version.md +++ b/content/print-version.md @@ -1,6 +1,6 @@ +++ date = "2017-07-29T22:48:43+01:00" -title = "Infusion" +title = "Print version" type = "print-version" +++ diff --git a/docs/index.html b/docs/index.html index 70f91e6..b9c35ec 100644 --- a/docs/index.html +++ b/docs/index.html @@ -169,6 +169,13 @@ +
  • + + + Printing + +
  • +
  • Writing

    @@ -317,6 +324,7 @@
  • Quickly include WCAG and Inclusive Design Principles references
  • A responsive, screen reader and keyboard accessible static site as output
  • Automated Github Pages deployment
  • +
  • Includes a single-page printable version suitable for PDF conversion
  • diff --git a/docs/index.xml b/docs/index.xml index 21ca832..4d92f88 100644 --- a/docs/index.xml +++ b/docs/index.xml @@ -23,6 +23,18 @@ So, this… <button aria-pressed="false">toggle me</button> Note that the syntax highlighting uses a greyscale theme. Infusion is careful not to use color as part of its own design, because these colors may clash with those of the design being illustrated and discussed. + + Installation + https://heydon.github.io/infusion/patterns/installation/ + Mon, 01 Jan 0001 00:00:00 +0000 + + https://heydon.github.io/infusion/patterns/installation/ + Infusion is built using the static site engine, Hugo, and NPM. The codebase is available to download on Github. Let’s get set up step-by-step. +Install Hugo First you need to install Hugo globally. +OSX users If you are a Mac user and have Homebrew on your system, installing Hugo is simple: +brew install hugo Alternatively, you can manually install Hugo from a package. You can verify the installation was successful by typing: + + Library structure https://heydon.github.io/infusion/patterns/writing/library-structure/ @@ -44,6 +56,16 @@ CodePen Infusion offers a couple of ways to do this. The first is by embedding C {{% codePen VpVNKW %}} This will embed the identified codePen into the content wherever you placed the shortcode, with the result view showing by default: + + Library setup + https://heydon.github.io/infusion/patterns/library-setup/ + Mon, 01 Jan 0001 00:00:00 +0000 + + https://heydon.github.io/infusion/patterns/library-setup/ + By now, you should have followed the Installation instructions. You should have Hugo and Node installed, and a local copy of a forked version of Infusion. You should also have run npm install in the root of that codebase. +“Cleaning” the content folder Before you can start documenting patterns, there are a few things still to do in order to get set up. At the moment, your version of Infusion is a facsimile of the original, containing all this documentation content. + + Markdown & metadata https://heydon.github.io/infusion/patterns/writing/markdown-and-metadata/ @@ -54,6 +76,17 @@ CodePen Infusion offers a couple of ways to do this. The first is by embedding C If you’re not familiar with writing markdown, there are a number of tutorials available. + + Serving + https://heydon.github.io/infusion/patterns/serving/ + Mon, 01 Jan 0001 00:00:00 +0000 + + https://heydon.github.io/infusion/patterns/serving/ + Serving locally While you’re creating content for your library, you’ll probably want to see what the finished product looks like. Fortunately, Infusion is easy to serve locally using the serve command: +npm run serve This will serve your working library from localhost:1313. Whenever you make changes to your library’s files, the site will automatically rebuild. No need to refresh the web page! +Publishing on Github Pages Infusion creates a /docs folder containing the latest version of your library whenever you do an npm run build or a git commit. + + Writing inline demos https://heydon.github.io/infusion/patterns/coding/writing-inline-demos/ @@ -64,6 +97,17 @@ If you’re not familiar with writing markdown, there are a number of tu Infusion offers another option: a special demo shortcode that allows you to write HTML, CSS, and JavaScript directly into the markdown file. The outputted demo is encapsulated using Shadow DOM, so you don’t have to worry about broken styles and global JS. + + Printing + https://heydon.github.io/infusion/patterns/printing/ + Mon, 01 Jan 0001 00:00:00 +0000 + + https://heydon.github.io/infusion/patterns/printing/ + Infusion’s output site includes a one-page Print version of the generated library, available at /print-version. So, if your library base URL is https://yourName.github.io/your-library, you can print the whole library — to PDF if wanted — from the following address: +https://yourName.github.io/your-library/print-version Print styles are also provided for individual pattern pages so, if you wanted to print off a single pattern document, go ahead! + + + Expandable sections https://heydon.github.io/infusion/patterns/writing/expandable-sections/ @@ -76,7 +120,7 @@ The expandable shortcode takes three parameters: - Infusion + Print version https://heydon.github.io/infusion/print-version/ Sat, 29 Jul 2017 22:48:43 +0100 @@ -138,28 +182,6 @@ The file tree is described using a markdown nested list structure: {{<youtube w7Ft2ymGmfc}} - - Installation - https://heydon.github.io/infusion/patterns/installation/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://heydon.github.io/infusion/patterns/installation/ - Infusion is built using the static site engine, Hugo, and NPM. The codebase is available to download on Github. Let’s get set up step-by-step. -Install Hugo First you need to install Hugo globally. -OSX users If you are a Mac user and have Homebrew on your system, installing Hugo is simple: -brew install hugo Alternatively, you can manually install Hugo from a package. You can verify the installation was successful by typing: - - - - Library setup - https://heydon.github.io/infusion/patterns/library-setup/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://heydon.github.io/infusion/patterns/library-setup/ - By now, you should have followed the Installation instructions. You should have Hugo and Node installed, and a local copy of a forked version of Infusion. You should also have run npm install in the root of that codebase. -“Cleaning” the content folder Before you can start documenting patterns, there are a few things still to do in order to get set up. At the moment, your version of Infusion is a facsimile of the original, containing all this documentation content. - - Notes & warnings https://heydon.github.io/infusion/patterns/writing/notes-and-warnings/ @@ -180,17 +202,6 @@ Notes You may wish to pick out some content in your pattern’s document I can reference the {{% pattern "Notes & warnings" %}} pattern here. This saves you having to worry about pathing and decorates the generated link with a bookmark icon, identifying the link as a pattern reference visually. - - Serving - https://heydon.github.io/infusion/patterns/serving/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://heydon.github.io/infusion/patterns/serving/ - Serving locally While you’re creating content for your library, you’ll probably want to see what the finished product looks like. Fortunately, Infusion is easy to serve locally using the serve command: -npm run serve This will serve your working library from localhost:1313. Whenever you make changes to your library’s files, the site will automatically rebuild. No need to refresh the web page! -Publishing on Github Pages Infusion creates a /docs folder containing the latest version of your library whenever you do an npm run build or a git commit. - - Tables of contents https://heydon.github.io/infusion/patterns/writing/tables-of-contents/ diff --git a/docs/patterns/coding/code-blocks/index.html b/docs/patterns/coding/code-blocks/index.html index 5517eb6..33680a6 100644 --- a/docs/patterns/coding/code-blocks/index.html +++ b/docs/patterns/coding/code-blocks/index.html @@ -166,6 +166,13 @@ +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/coding/color-palettes/index.html b/docs/patterns/coding/color-palettes/index.html index 6e3bd33..72bfd88 100644 --- a/docs/patterns/coding/color-palettes/index.html +++ b/docs/patterns/coding/color-palettes/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/coding/command-line/index.html b/docs/patterns/coding/command-line/index.html index befc38f..f6a640b 100644 --- a/docs/patterns/coding/command-line/index.html +++ b/docs/patterns/coding/command-line/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/coding/demo-embedding/index.html b/docs/patterns/coding/demo-embedding/index.html index d54784b..4b293a4 100644 --- a/docs/patterns/coding/demo-embedding/index.html +++ b/docs/patterns/coding/demo-embedding/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/coding/file-trees/index.html b/docs/patterns/coding/file-trees/index.html index c71971f..02bc136 100644 --- a/docs/patterns/coding/file-trees/index.html +++ b/docs/patterns/coding/file-trees/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/coding/index.html b/docs/patterns/coding/index.html index 993a6f3..e9784c6 100644 --- a/docs/patterns/coding/index.html +++ b/docs/patterns/coding/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/coding/tested/index.html b/docs/patterns/coding/tested/index.html index 889ee32..d524290 100644 --- a/docs/patterns/coding/tested/index.html +++ b/docs/patterns/coding/tested/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/coding/writing-inline-demos/index.html b/docs/patterns/coding/writing-inline-demos/index.html index ac29c77..05fd299 100644 --- a/docs/patterns/coding/writing-inline-demos/index.html +++ b/docs/patterns/coding/writing-inline-demos/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/index.html b/docs/patterns/index.html index f1e0f4b..a058459 100644 --- a/docs/patterns/index.html +++ b/docs/patterns/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    @@ -338,6 +345,16 @@
  • +
  • +

    + + + Printing + +

    +
  • + + diff --git a/docs/patterns/index.xml b/docs/patterns/index.xml index 8e6fa43..8cea67a 100644 --- a/docs/patterns/index.xml +++ b/docs/patterns/index.xml @@ -43,5 +43,16 @@ npm run serve This will serve your working library from localhost:1313. Whenever Publishing on Github Pages Infusion creates a /docs folder containing the latest version of your library whenever you do an npm run build or a git commit.
    + + Printing + https://heydon.github.io/infusion/patterns/printing/ + Mon, 01 Jan 0001 00:00:00 +0000 + + https://heydon.github.io/infusion/patterns/printing/ + Infusion’s output site includes a one-page Print version of the generated library, available at /print-version. So, if your library base URL is https://yourName.github.io/your-library, you can print the whole library — to PDF if wanted — from the following address: +https://yourName.github.io/your-library/print-version Print styles are also provided for individual pattern pages so, if you wanted to print off a single pattern document, go ahead! + + + \ No newline at end of file diff --git a/docs/patterns/installation/index.html b/docs/patterns/installation/index.html index b208dcc..46b63fe 100644 --- a/docs/patterns/installation/index.html +++ b/docs/patterns/installation/index.html @@ -166,6 +166,13 @@ +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/library-setup/index.html b/docs/patterns/library-setup/index.html index a054b53..816adf6 100644 --- a/docs/patterns/library-setup/index.html +++ b/docs/patterns/library-setup/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/media/including-images/index.html b/docs/patterns/media/including-images/index.html index f7c677d..c38c6fe 100644 --- a/docs/patterns/media/including-images/index.html +++ b/docs/patterns/media/including-images/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/media/including-videos/index.html b/docs/patterns/media/including-videos/index.html index feee591..feb9f25 100644 --- a/docs/patterns/media/including-videos/index.html +++ b/docs/patterns/media/including-videos/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/media/index.html b/docs/patterns/media/index.html index 4274faa..6f07286 100644 --- a/docs/patterns/media/index.html +++ b/docs/patterns/media/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/printing/index.html b/docs/patterns/printing/index.html new file mode 100644 index 0000000..16826a1 --- /dev/null +++ b/docs/patterns/printing/index.html @@ -0,0 +1,352 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Printing | Infusion + + + + + + + skip to content + + + + + + + + + + W3C + SVG + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + + + + diff --git a/docs/patterns/serving/index.html b/docs/patterns/serving/index.html index ba43158..7287cde 100644 --- a/docs/patterns/serving/index.html +++ b/docs/patterns/serving/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/writing/expandable-sections/index.html b/docs/patterns/writing/expandable-sections/index.html index dded472..3311568 100644 --- a/docs/patterns/writing/expandable-sections/index.html +++ b/docs/patterns/writing/expandable-sections/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/writing/index.html b/docs/patterns/writing/index.html index c5c70be..3162c7c 100644 --- a/docs/patterns/writing/index.html +++ b/docs/patterns/writing/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/writing/library-structure/index.html b/docs/patterns/writing/library-structure/index.html index c10fbaa..9cf2b93 100644 --- a/docs/patterns/writing/library-structure/index.html +++ b/docs/patterns/writing/library-structure/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/writing/markdown-and-metadata/index.html b/docs/patterns/writing/markdown-and-metadata/index.html index e5c260e..535099f 100644 --- a/docs/patterns/writing/markdown-and-metadata/index.html +++ b/docs/patterns/writing/markdown-and-metadata/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/writing/notes-and-warnings/index.html b/docs/patterns/writing/notes-and-warnings/index.html index f6d8d86..e8a66f6 100644 --- a/docs/patterns/writing/notes-and-warnings/index.html +++ b/docs/patterns/writing/notes-and-warnings/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/writing/references/index.html b/docs/patterns/writing/references/index.html index c8c33ae..e2f6986 100644 --- a/docs/patterns/writing/references/index.html +++ b/docs/patterns/writing/references/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/patterns/writing/tables-of-contents/index.html b/docs/patterns/writing/tables-of-contents/index.html index fd04e1d..1d1d660 100644 --- a/docs/patterns/writing/tables-of-contents/index.html +++ b/docs/patterns/writing/tables-of-contents/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/print-version/index.html b/docs/print-version/index.html index 71ecfc8..e5fe95d 100644 --- a/docs/print-version/index.html +++ b/docs/print-version/index.html @@ -162,6 +162,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    @@ -459,6 +466,29 @@ theme = "infusion"

    You’ll also need to add it to your config.toml file as the baseURL value. See Library setup for more information.

    + + +
    +

    + + Printing +

    +

    Infusion’s output site includes a one-page Print version of the generated library, available at /print-version. So, if your library base URL is https://yourName.github.io/your-library, you can print the whole library — to PDF if wanted — from the following address:

    + +
    https://yourName.github.io/your-library/print-version
    +
    + +

    +

    +
    diff --git a/docs/service-worker.js b/docs/service-worker.js index de85bab..54ad1a4 100644 --- a/docs/service-worker.js +++ b/docs/service-worker.js @@ -37,7 +37,7 @@ /* eslint-disable indent, no-unused-vars, no-multiple-empty-lines, max-nested-callbacks, space-before-function-paren, quotes, comma-spacing */ 'use strict'; -var precacheConfig = [["browserconfig.xml","67c3113b1574fecc6015d56d774e1d38"],["categories/index.xml","0ac1d02cfbcad2fcc8c13b2c54715338"],["css/fonts/miriamlibre-bold.woff","96496f6f06535d25b3bcba876917ca35"],["css/fonts/miriamlibre-bold.woff2","668defa44d9a74dd709ce0c826a5eb11"],["css/images/arrow_effect.svg","1434d178461f70c16b77acb4bdbc51e3"],["css/images/icon-tick.svg","35d4d4728ea80d254508b2bca4109d70"],["css/images/stripe.svg","fa3f32a026b6a1bb04ee98d963432e15"],["css/prism.css","004029c8c70ed2bbaa5d9debcf14f8c7"],["css/styles.css","a5642b87198a0f10b2ee19301c004693"],["images/android-icon-144x144.png","43e1f47f182b13d0dee15f510213e928"],["images/android-icon-192x192.png","4c07782e52e0ab714074e6d3d69dc3ec"],["images/android-icon-36x36.png","3b2cd8c925a66bf84c89b68bb30e5f62"],["images/android-icon-48x48.png","45dc386eea1d8a46216a8b6de9b156c6"],["images/android-icon-72x72.png","b04c64637efed2b04fa900ddfcbfe75d"],["images/android-icon-96x96.png","bd9c126a4d6baf7ce442122ce0e89e11"],["images/apple-icon-114x114.png","72e127d6f01dfcd2ba2340141babc536"],["images/apple-icon-120x120.png","bc7cd9e36869e66aaca78412207bf723"],["images/apple-icon-144x144.png","43e1f47f182b13d0dee15f510213e928"],["images/apple-icon-152x152.png","567c64205576865b5e5d06c849613ca2"],["images/apple-icon-180x180.png","6b8734c446bf02ab50be598b4c01ec9c"],["images/apple-icon-57x57.png","f8c586086752c78870820b6190d6b42b"],["images/apple-icon-60x60.png","6e88df111e506bcd5501bed4ff10542e"],["images/apple-icon-72x72.png","b04c64637efed2b04fa900ddfcbfe75d"],["images/apple-icon-76x76.png","d8666e0ac256f39f8c5c628486bd71fb"],["images/apple-icon-precomposed.png","725f6cec25256abb1db10385e0724400"],["images/apple-icon.png","725f6cec25256abb1db10385e0724400"],["images/bad_design_system.png","9c0e87a34e7d842b0e2831dc947249aa"],["images/browser-Chrome-Android.svg","3100b2a9c5f0e34982c717fc2aa46d73"],["images/browser-Chrome.svg","fa39b4be6727525330e928f582fbe80a"],["images/browser-Edge.svg","9e8265ab8f6a701587a4271dd3aa6a73"],["images/browser-Firefox-Android.svg","452df7b9e83c70a07e8e03b4e8dab9c4"],["images/browser-Firefox.svg","d3093eda664be3d0cc6d791e1386420f"],["images/browser-IE.svg","13e192cf2b3fe17e7049a49b7d085caa"],["images/browser-Opera.svg","95d65630c9f7deef6a3098af8f5baf9f"],["images/browser-Safari-iOS.svg","f729e629ec998ec40d313495d7257741"],["images/browser-Safari.svg","523ee9491f5a937b8975f4d23aa77f62"],["images/favicon-16x16.png","7a99c20d6c00babddd26d03607b8721d"],["images/favicon-32x32.png","129881474a1bf130027bff7a1e89febd"],["images/favicon-96x96.png","bd9c126a4d6baf7ce442122ce0e89e11"],["images/favicon.ico","81c46feedbfcc6c6dc9495e4fd5adfad"],["images/icon-info.svg","53a6c555ce41f818556c71ab0dfc533b"],["images/icon-tag.svg","f067bbbc072941b2a0335679300bfc6c"],["images/icon-warning.svg","2a4322abbee9aed694fadb50e98a1f61"],["images/logo.png","0134d77c2c6b01eabb425990bab7ce9a"],["images/ms-icon-144x144.png","43e1f47f182b13d0dee15f510213e928"],["images/ms-icon-150x150.png","e73370837ab9060772a18d62aaacd0f0"],["images/ms-icon-310x310.png","8a7143516b929702e3309bb537a99c5c"],["images/ms-icon-70x70.png","d7c6e7368733d53b5f979546d5aa4fe9"],["images/open_in_desktop.png","e899d6679b011aa7b0e783683d90d99b"],["images/serve_from_docs.png","15ae9eac3737a21593ebe00a9312bf9e"],["index.html","a8e4fd4d6bc2434e937b6b4483177bab"],["index.xml","e9f5c90d95b88aaa8f18c412dc46b5e5"],["js/dom-scripts.js","f7e4e662f3c30e319ac30f9a6c28d0ca"],["js/prism.js","0c1fb8d3a69ee7c91dbf0f361ded7763"],["js/service-worker-registration.js","d60f01dc1393cbaaf4f7435339074d5e"],["js/webcomponents.js","c5f6fe397db634cde89f66c2f1bc2f62"],["manifest.json","db7fe2494bfde2c101d77d4aee481437"],["patterns/coding/code-blocks/index.html","e393ef38a2268d82fdd83235261c9c7d"],["patterns/coding/color-palettes/index.html","9d780fcfb584683c0ff2abf7a8503d22"],["patterns/coding/command-line/index.html","47659beeee9b30c57f67560513bed2cf"],["patterns/coding/demo-embedding/index.html","db2fb8d7cd354e542b9b33ba976d96f8"],["patterns/coding/file-trees/index.html","af5c8b56cd1b716cd8294075b2c0c934"],["patterns/coding/index.html","b78599c27d6d4f35b2387eeb9a13c9fc"],["patterns/coding/index.xml","c8141d2e5b185b41c7c2297cbe9761a9"],["patterns/coding/tested/index.html","4d3d3c05d33fec855ab93709e6eae5b9"],["patterns/coding/writing-inline-demos/index.html","4c4c6dcd4e3035aee91dbc53060a916e"],["patterns/index.html","e6a5a050e4b58e3bbb5f564232077290"],["patterns/index.xml","8c88ea8c5d4e10c5982c9293a8fd501b"],["patterns/installation/index.html","e74500b95179cdc903a3b1e2419b38d5"],["patterns/library-setup/index.html","6d42e2753a66ed20265f943449a2cb3a"],["patterns/media/including-images/index.html","1d1c10eee51e0cf417280922ee505b5d"],["patterns/media/including-videos/index.html","bfd22c505a169035ecd5824eab349f93"],["patterns/media/index.html","70c0f7294affe1bbb5ab62c8a49d3ad7"],["patterns/media/index.xml","38cdadb4cc97fb22238e2342ed8d4d31"],["patterns/serving/index.html","d8088922d7dbfc20a6639745d08230d8"],["patterns/writing/expandable-sections/index.html","c5a30afe9d92ae517c0580435e3868f4"],["patterns/writing/index.html","97b5a2b50f0d998c64bb81b4f1fdcec4"],["patterns/writing/index.xml","7975bc05d66958e02f1433099f033636"],["patterns/writing/library-structure/index.html","a3e42ca086e537b6154fd7c5f7933727"],["patterns/writing/markdown-and-metadata/index.html","0f1f25473ef81c87fb7a1a58c2e2eb77"],["patterns/writing/notes-and-warnings/index.html","6e304dc7d10d3d6012527ebd4009de46"],["patterns/writing/references/index.html","df4cd8aa176670025192c991cb29e116"],["patterns/writing/tables-of-contents/index.html","611b50585b133b60ecf6b805dd611408"],["print-version/index.html","05d88f3d3a66c32b0541f739d75b5345"],["sitemap.xml","dccc7ccd443b4159d83ae2a0068ae6c6"],["tags/index.xml","5af18d25fdcb072a78c1603adacee4f6"],["tags/markdown/index.html","0a5bcc8b566d704d2765b31c4229e0c5"],["tags/markdown/index.xml","757d307cdf85883859ac95ea20527f4a"],["tags/metadata/index.html","901e2ea24daf09ff0257d380e31afe0c"],["tags/metadata/index.xml","b6989e44540f4745072a2063369de173"]]; +var precacheConfig = [["browserconfig.xml","67c3113b1574fecc6015d56d774e1d38"],["categories/index.xml","0ac1d02cfbcad2fcc8c13b2c54715338"],["css/fonts/miriamlibre-bold.woff","96496f6f06535d25b3bcba876917ca35"],["css/fonts/miriamlibre-bold.woff2","668defa44d9a74dd709ce0c826a5eb11"],["css/images/arrow_effect.svg","1434d178461f70c16b77acb4bdbc51e3"],["css/images/icon-tick.svg","35d4d4728ea80d254508b2bca4109d70"],["css/images/stripe.svg","fa3f32a026b6a1bb04ee98d963432e15"],["css/prism.css","004029c8c70ed2bbaa5d9debcf14f8c7"],["css/styles.css","a5642b87198a0f10b2ee19301c004693"],["images/android-icon-144x144.png","43e1f47f182b13d0dee15f510213e928"],["images/android-icon-192x192.png","4c07782e52e0ab714074e6d3d69dc3ec"],["images/android-icon-36x36.png","3b2cd8c925a66bf84c89b68bb30e5f62"],["images/android-icon-48x48.png","45dc386eea1d8a46216a8b6de9b156c6"],["images/android-icon-72x72.png","b04c64637efed2b04fa900ddfcbfe75d"],["images/android-icon-96x96.png","bd9c126a4d6baf7ce442122ce0e89e11"],["images/apple-icon-114x114.png","72e127d6f01dfcd2ba2340141babc536"],["images/apple-icon-120x120.png","bc7cd9e36869e66aaca78412207bf723"],["images/apple-icon-144x144.png","43e1f47f182b13d0dee15f510213e928"],["images/apple-icon-152x152.png","567c64205576865b5e5d06c849613ca2"],["images/apple-icon-180x180.png","6b8734c446bf02ab50be598b4c01ec9c"],["images/apple-icon-57x57.png","f8c586086752c78870820b6190d6b42b"],["images/apple-icon-60x60.png","6e88df111e506bcd5501bed4ff10542e"],["images/apple-icon-72x72.png","b04c64637efed2b04fa900ddfcbfe75d"],["images/apple-icon-76x76.png","d8666e0ac256f39f8c5c628486bd71fb"],["images/apple-icon-precomposed.png","725f6cec25256abb1db10385e0724400"],["images/apple-icon.png","725f6cec25256abb1db10385e0724400"],["images/bad_design_system.png","9c0e87a34e7d842b0e2831dc947249aa"],["images/browser-Chrome-Android.svg","3100b2a9c5f0e34982c717fc2aa46d73"],["images/browser-Chrome.svg","fa39b4be6727525330e928f582fbe80a"],["images/browser-Edge.svg","9e8265ab8f6a701587a4271dd3aa6a73"],["images/browser-Firefox-Android.svg","452df7b9e83c70a07e8e03b4e8dab9c4"],["images/browser-Firefox.svg","d3093eda664be3d0cc6d791e1386420f"],["images/browser-IE.svg","13e192cf2b3fe17e7049a49b7d085caa"],["images/browser-Opera.svg","95d65630c9f7deef6a3098af8f5baf9f"],["images/browser-Safari-iOS.svg","f729e629ec998ec40d313495d7257741"],["images/browser-Safari.svg","523ee9491f5a937b8975f4d23aa77f62"],["images/favicon-16x16.png","7a99c20d6c00babddd26d03607b8721d"],["images/favicon-32x32.png","129881474a1bf130027bff7a1e89febd"],["images/favicon-96x96.png","bd9c126a4d6baf7ce442122ce0e89e11"],["images/favicon.ico","81c46feedbfcc6c6dc9495e4fd5adfad"],["images/icon-info.svg","53a6c555ce41f818556c71ab0dfc533b"],["images/icon-tag.svg","f067bbbc072941b2a0335679300bfc6c"],["images/icon-warning.svg","2a4322abbee9aed694fadb50e98a1f61"],["images/logo.png","0134d77c2c6b01eabb425990bab7ce9a"],["images/ms-icon-144x144.png","43e1f47f182b13d0dee15f510213e928"],["images/ms-icon-150x150.png","e73370837ab9060772a18d62aaacd0f0"],["images/ms-icon-310x310.png","8a7143516b929702e3309bb537a99c5c"],["images/ms-icon-70x70.png","d7c6e7368733d53b5f979546d5aa4fe9"],["images/open_in_desktop.png","e899d6679b011aa7b0e783683d90d99b"],["images/serve_from_docs.png","15ae9eac3737a21593ebe00a9312bf9e"],["index.html","8feea45d333287eb304a9d0b88e8bd65"],["index.xml","62c43ef554019de6d4808768f5f4cbad"],["js/dom-scripts.js","f7e4e662f3c30e319ac30f9a6c28d0ca"],["js/prism.js","0c1fb8d3a69ee7c91dbf0f361ded7763"],["js/service-worker-registration.js","d60f01dc1393cbaaf4f7435339074d5e"],["js/webcomponents.js","c5f6fe397db634cde89f66c2f1bc2f62"],["manifest.json","db7fe2494bfde2c101d77d4aee481437"],["patterns/coding/code-blocks/index.html","bfc6b9446181c627620d49a915035e9b"],["patterns/coding/color-palettes/index.html","303b710af1c8bfb1add6e0c9843e3a6a"],["patterns/coding/command-line/index.html","51adfd19db6e0f699196ec3f6fda3f6e"],["patterns/coding/demo-embedding/index.html","e0b0b5ae47ac3e8fc285eff918bcb1c6"],["patterns/coding/file-trees/index.html","12739e41bfe4415e53cd1463bea5cb89"],["patterns/coding/index.html","04653acec559d3e2695194d6a3f938af"],["patterns/coding/index.xml","c8141d2e5b185b41c7c2297cbe9761a9"],["patterns/coding/tested/index.html","7e48cc0d6328acc0853b089e1e5b1678"],["patterns/coding/writing-inline-demos/index.html","781c132216d126a7594561ca5e5339d0"],["patterns/index.html","2c6ba13743b114c000523688deadc71c"],["patterns/index.xml","fef34844f84d6c8ad7e27732478291a7"],["patterns/installation/index.html","498e0090e718e86200cf3f22cb97b1fd"],["patterns/library-setup/index.html","5676ca139c2d015b6cfe5bcef4f27a44"],["patterns/media/including-images/index.html","232cc857e80fcd66a93a2a791b8448ff"],["patterns/media/including-videos/index.html","fadebe383c4347e59a9c66cdaab5566b"],["patterns/media/index.html","86f11f5a002d4eef6630c0da0831e7c1"],["patterns/media/index.xml","38cdadb4cc97fb22238e2342ed8d4d31"],["patterns/printing/index.html","5a6bf3a2f3851d5b899500729cd5f47f"],["patterns/serving/index.html","3bdc6dee020506a4ba738c72323cf0e1"],["patterns/writing/expandable-sections/index.html","21e08d437cab81a252d0acee44b0fd09"],["patterns/writing/index.html","c45453e9a2ce2ed139e98df247aa35d0"],["patterns/writing/index.xml","7975bc05d66958e02f1433099f033636"],["patterns/writing/library-structure/index.html","57bd25f44e0402472d53f68a0d8ad500"],["patterns/writing/markdown-and-metadata/index.html","e57ecc49a2bc144c743310e1b12bbd50"],["patterns/writing/notes-and-warnings/index.html","c966c0396b878923a58cead1423fdbf1"],["patterns/writing/references/index.html","de275b54d8b2c9c7d5af86d79d5c63cd"],["patterns/writing/tables-of-contents/index.html","39a8e3bc4631e5067ac645fe4d8aa8d3"],["print-version/index.html","13d50e2e3f69c60ec481453e1d2303b9"],["sitemap.xml","001c1e642c492c18a637bccfcfc2fe9d"],["tags/index.xml","5af18d25fdcb072a78c1603adacee4f6"],["tags/markdown/index.html","4290f4662cb9deb5b21c478fb264c81b"],["tags/markdown/index.xml","757d307cdf85883859ac95ea20527f4a"],["tags/metadata/index.html","e0b201d1da0f647b3dce6f83fd04d7f8"],["tags/metadata/index.xml","b6989e44540f4745072a2063369de173"]]; var cacheName = 'sw-precache-v3-sw-precache-' + (self.registration ? self.registration.scope : ''); diff --git a/docs/sitemap.xml b/docs/sitemap.xml index fb9ac34..a41ba76 100644 --- a/docs/sitemap.xml +++ b/docs/sitemap.xml @@ -6,6 +6,10 @@ https://heydon.github.io/infusion/patterns/coding/code-blocks/ + + https://heydon.github.io/infusion/patterns/installation/ + + https://heydon.github.io/infusion/patterns/writing/library-structure/ @@ -18,6 +22,10 @@ https://heydon.github.io/infusion/patterns/coding/demo-embedding/ + + https://heydon.github.io/infusion/patterns/library-setup/ + + https://heydon.github.io/infusion/patterns/media/ @@ -26,10 +34,18 @@ https://heydon.github.io/infusion/patterns/writing/markdown-and-metadata/ + + https://heydon.github.io/infusion/patterns/serving/ + + https://heydon.github.io/infusion/patterns/coding/writing-inline-demos/ + + https://heydon.github.io/infusion/patterns/printing/ + + https://heydon.github.io/infusion/patterns/writing/expandable-sections/ @@ -73,14 +89,6 @@ https://heydon.github.io/infusion/patterns/media/including-videos/ - - https://heydon.github.io/infusion/patterns/installation/ - - - - https://heydon.github.io/infusion/patterns/library-setup/ - - https://heydon.github.io/infusion/tags/markdown/ 0 @@ -104,10 +112,6 @@ https://heydon.github.io/infusion/patterns/writing/references/ - - https://heydon.github.io/infusion/patterns/serving/ - - https://heydon.github.io/infusion/patterns/writing/tables-of-contents/ diff --git a/docs/tags/markdown/index.html b/docs/tags/markdown/index.html index eff82d7..4c7d396 100644 --- a/docs/tags/markdown/index.html +++ b/docs/tags/markdown/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing

    diff --git a/docs/tags/metadata/index.html b/docs/tags/metadata/index.html index b4a6641..a7429a6 100644 --- a/docs/tags/metadata/index.html +++ b/docs/tags/metadata/index.html @@ -166,6 +166,13 @@
  • +
  • + + + Printing + +
  • +
  • Writing