Commit Graph

4 Commits

Author SHA1 Message Date
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
Joao Fernandes 1fa5f5988d Refactor rbac topics (#4229)
* Refactor rbac topics

* Make headings sentence case
2017-08-17 08:36:18 -07:00
Jim Galasyn b8ffacac81 Update screenshots for Beta (#175) 2017-08-15 23:31:15 -07:00
Jim Galasyn 732dddce51 Add outline of steps for configuring LDAP (#171)
* Add outline of steps for configuring LDAP

* Change title per feedback
2017-08-15 23:31:15 -07:00