docs/docker-for-windows
Akim Demaille 14b53b68c3 Jekyll: don't put {% raw %} directives in pre blocks
Replace all occurrences of

    ```foo
    {% raw %}
    bar
    {% endraw %}
    ```

(which generates spurious empty lines in the rendered pre block) with

    {% raw %}
    ```foo
    bar
    ```
    {% endraw %}

Also, fix some occurrences where the raw section is too large and
prevented interpretation of Jekyll directives.

This is the syntax used in the documentation of Jekyll itself:

https://raw.githubusercontent.com/jekyll/jekyll/master/docs/_docs/templates.md

FTR, done with two perl substitutions:

    '^([\t ]*```[^\n]*
    )([ \t]*\{% raw %\}[^\n]*
    )' '$2$1'

and

    '^([ \t]*\{% endraw %\}[^\n]*
    )([\t ]*```[^\n]*
    )' '$2$1'

and manually tweaks.  A mechanical check would be most useful.

Signed-off-by: Akim Demaille <akim.demaille@docker.com>
2018-03-13 10:28:29 -07:00
..
images Document Kubernetes support for Win (#5819) 2018-01-26 09:04:26 -08:00
docker-toolbox.md Windows toolbox migration instructions (#5939) 2018-02-10 12:19:16 -08:00
faqs.md Various copyedits to reduce future tense, wordiness, and use of 'please' (#5788) 2018-01-25 17:37:23 -08:00
index.md Fixed a typo in index.md (#6050) 2018-02-23 09:07:33 -08:00
install.md Move /engine/installation to /install (#5651) 2018-01-26 10:29:14 -08:00
kubernetes.md Document Kubernetes support for Win (#5819) 2018-01-26 09:04:26 -08:00
opensource.md Add CSS for option to create inline images (like whale menu) (#3877) 2017-07-13 16:07:43 -07:00
release-notes.md Docker for windows edge relnotes 18.03.0-ce-rc3-win56 (#6212) 2018-03-13 09:56:44 -07:00
troubleshoot.md Jekyll: don't put {% raw %} directives in pre blocks 2018-03-13 10:28:29 -07:00