Skip to content

Commit 2fd8ed9

Browse files
committed
Styling fixes, and a few clarifications
1 parent fdbbe0f commit 2fd8ed9

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

README.md

+12-9
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Note that you will have to restart this command if you modify the `_config.yml`
1212

1313
## Style notes
1414

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.
1616

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 :
1818
```
1919
{% highlight sh %}
2020
Code in shell script
@@ -23,9 +23,9 @@ Code in shell script
2323

2424
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).
2525

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 $`).
2727

28-
*Figures/Images*: When embedding figures:
28+
**Figures/Images**: When embedding figures:
2929

3030
1. Name the image file with a prefix of the page where it's being used,
3131
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
3636
{% include figure.html url="/figures/archguide-fig02_service_anatomy.jpg" caption="Figure 2. Anatomy of a Service." %}
3737
```
3838

39-
## Converting documents to include in this repo
39+
## Converting documents to Markdown
4040

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.
4242

4343
### PDF
4444

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`.
4646

4747
Extract text: `pdftotext -layout -enc UTF-8 file.pdf file.txt`
48+
4849
Extract images: `pdfimages -all file.pdf image_prefix`
4950

51+
*Note:* Text extraction only works when the document contains text, and isn't a scanned picture of text or obfuscated in some manner.
52+
5053
### Google Docs
5154

52-
The [gdocs2md](https://github.com/mangini/gdocs2md) tool can convert then email you a markdown version in a zipfile.
55+
The [gdocs2md](https://github.com/mangini/gdocs2md) tool can convert to markdown, then email you a zipfile containing the documents text and images.
5356

5457
### Other text/document formats
5558

56-
Many file formats are supported by [Pandoc](http://pandoc.org/).
59+
Many file formats are supported by [Pandoc](http://pandoc.org/), which can also provide high quality PDF's.
5760

5861

0 commit comments

Comments
 (0)