docs/config
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
..
containers Jekyll: don't put {% raw %} directives in pre blocks 2018-03-13 10:28:29 -07:00
daemon Tidy language on daemon index (#6128) 2018-03-02 16:30:41 -08:00
thirdparty Favor docker <object> <verb> format of commands (#5914) 2018-02-05 09:33:47 -08:00
formatting.md Add println to formatting doc (#5960) 2018-02-08 11:35:34 -08:00
labels-custom-metadata.md Update link to documentation for filtering images by label (#5889) 2018-02-02 09:30:56 -08:00
pruning.md Clean up information architecture (#5893) 2018-02-01 15:25:43 -08:00