You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+12-9
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,9 @@ Note that you will have to restart this command if you modify the `_config.yml`
12
12
13
13
## Style notes
14
14
15
-
*Quoting Text*: When quoting a section of text inline, such as method or variable names, filenames and paths, commands, and similar, use the backtick (`` ` ``) character, except when creating a URL for a filename/path link that points to that location in the code repo in which case quoting isn't needed.
15
+
**Quoting Text**: When quoting a section of text inline, such as method or variable names, filenames and paths, commands, and similar, use the backtick (`` ` ``) character, except when creating a URL for a filename/path link that points to that location in the code repo in which case quoting isn't needed.
16
16
17
-
*Code*: For standalone or multi-line code snippets, wrap code in tags for [Jekyll's code highlighting support](http://jekyllrb.com/docs/posts/#highlighting-code-snippets), which looks like this :
17
+
**Code**: For standalone or multi-line code snippets, wrap code in tags for [Jekyll's code highlighting support](http://jekyllrb.com/docs/posts/#highlighting-code-snippets), which looks like this :
18
18
```
19
19
{% highlight sh %}
20
20
Code in shell script
@@ -23,9 +23,9 @@ Code in shell script
23
23
24
24
If you're quoting a template that uses the same `{% %}` tags as Jekyll, you may need to [escape the code as described here](http://stackoverflow.com/questions/3426182/how-to-escape-liquid-template-tags).
25
25
26
-
*Shell Commands*: For shell commands that are intended to be run interactively by a user, prefix line with `$` if run as a unprivileged user, or `#` if being run as root. Put a space between the prefix and the command. If you need to specify which user is running a commands, or on which host, add that to the prefix (ex: `username@host $`).
26
+
**Shell Commands**: For shell commands that are intended to be run interactively by a user, prefix line with `$` if run as a unprivileged user, or `#` if being run as root. Put a space between the prefix and the command. If you need to specify which user is running a commands, or on which host, add that to the prefix (ex: `username@host $`).
27
27
28
-
*Figures/Images*: When embedding figures:
28
+
**Figures/Images**: When embedding figures:
29
29
30
30
1. Name the image file with a prefix of the page where it's being used,
31
31
2. Optionally prefix it with the figure number and a description.
@@ -36,23 +36,26 @@ If you're quoting a template that uses the same `{% %}` tags as Jekyll, you may
36
36
{% include figure.html url="/figures/archguide-fig02_service_anatomy.jpg" caption="Figure 2. Anatomy of a Service." %}
37
37
```
38
38
39
-
## Converting documents to include in this repo
39
+
## Converting documents to Markdown
40
40
41
-
Note - all the below methods require a bit of cleanup after conversion, but should do the majority of the work for you
41
+
Note - all the below methods require a bit of cleanup after conversion, but should do the vast majority of the work required.
42
42
43
43
### PDF
44
44
45
-
The [Poppler](http://poppler.freedesktop.org) library includes the utilties `pdftotext` and `pdfimages`.
45
+
The [Poppler](http://poppler.freedesktop.org) library includes the utilties `pdftotext` and `pdfimages`.
0 commit comments