Skip to content
This repository has been archived by the owner on Oct 9, 2019. It is now read-only.

Fix minor typos in readme #55

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ReStructuredText Preview package

Show the rendered HTML rst to the right of the current editor using
`ctrl-shift-r`
`ctrl-shift-r`.

It can be activated from the editor using the `ctrl-shift-r` key-binding and is
currently enabled for `.rst` files.
Expand All @@ -18,21 +18,20 @@ If launching Atom from the OSX dock rather than from the terminal, you might see
/usr/local/bin is not loaded into the path causing pandoc not to be found.

```
'pandoc' could not be spawned.
Is it installed and on your path?
'pandoc' could not be spawned.
Is it installed and on your path?
If so please open an issue on the package spawning the process.
```

This is a [current bug][2] in Atom.

Until this atom bug is fixed, a workaround is to add the following config
to the ~/.atom/init.coffee file the relaunch from the OSX dock:
to the ~/.atom/init.coffee file, then relaunch from the OSX dock:
```
process.env.PATH = ["/usr/bin",
"/usr/local/bin",
].join(":")
```


[1]: http://johnmacfarlane.net/pandoc/index.html
[2]: https://github.com/atom/atom/issues/6956