Commit Graph

14 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
Misty Stanley-Jones a4f5e30249
Various copyedits to reduce future tense, wordiness, and use of 'please' (#5788)
* Reword lots of instances of 'will'

* Reword lots of instances of won't

* Reword lots of instances of we'll

* Eradicate you'll

* Eradicate 'be able to' type of phrases

* Eradicate 'unable to' type of phrases

* Eradicate 'has / have to' type of phrases

* Eradicate 'note that' type of phrases

* Eradicate 'in order to' type of phrases

* Redirect to official Chef and Puppet docs

* Eradicate gratuitous 'please'

* Reduce use of e.g.

* Reduce use of i.e.

* Reduce use of N.B.

* Get rid of 'sexagesimal' and correct some errors
2018-01-25 17:37:23 -08:00
Jim Galasyn 1979162614 Fix node state message (#4555) 2017-09-07 16:31:58 -07:00
Ryan Zhang 850cea684a Replace UCP controller with manager (#3326) 2017-06-20 13:56:55 -07:00
Jim Galasyn e70c60ff03 Add engine ID error condition to UCP troubleshooting (#3057) 2017-04-25 12:34:18 -07:00
Wang Jie 54ff1fe33c Update troubleshoot-configurations.md: fix typos (#3014) 2017-04-24 09:25:54 -07:00
Wang Jie e30fa0c195 Update index.md (#2699) 2017-04-10 12:40:37 -07:00
Wang Jie b68e342337 Update troubleshoot-node-messages.md (#2700) 2017-04-10 12:37:51 -07:00
Wang Jie 738976a262 Update troubleshoot-with-logs.md (#2703) 2017-04-10 12:33:51 -07:00
Alexandros Mavrogiannis a152a8b270 Extend and rewrite ucp troubleshooting (#1843)
* Extend and rewrite ucp troubleshooting

Signed-off-by: Alex Mavrogiannis <alex.mavrogiannis@docker.com>

* Clean and add images to UCP troubleshoot
2017-02-27 08:58:25 -08:00
Misty Stanley-Jones 7bc3323ab3 Add {% raw %} notation to a few codeblocks 2017-02-14 16:19:06 -08:00
Josh Hawn 322d9e667e [datacenter/ucp] Document RethinkDB Configuration
Docker-DCO-1.1-Signed-off-by: Josh Hawn <josh.hawn@docker.com> (github: jlhawn)
2017-02-13 14:47:40 -08:00
Joao Fernandes 2b7412d72b Updates all DDC links 2017-02-08 21:02:32 -08:00
Joao Fernandes f40f7f29ce Review UCP information architecture 2017-02-08 21:02:32 -08:00