content updates

This commit is contained in:
Tom Johnson
2015-08-13 08:35:33 -07:00
parent d849d4db55
commit 00e9d33cd7
4 changed files with 10341 additions and 10272 deletions

File diff suppressed because it is too large Load Diff

View File

@ -26,7 +26,7 @@ You configure the email in the configuration file with this property: `site.feed
It's common to publish multiple sites. If you want to link them together, you could simply list links to the other doc sites in a drop-down menu configured in the topnav_dropdowns section in the topnav_doc.yml file. However, suppose you want to do something more fancy.
Included in the topnav.html file is an include to /doc/customMenu.html. The code there is as follows:
Included in the topnav.html file is an include to /doc/customMenu.html. The code in customMenu.html is as follows:
```
<li {% if site.audience == "writers" %}class="dropdownActive"{% endif %}><a href="{% if page.homepage == true or page.switch == false %}../doc_writers/{{site.suffix}}">Writer docs</a> {% else %} ../doc_writers{{page.url}}">Writer docs</a>{% endif %}</li>

View File

@ -24,10 +24,18 @@ Since you'll be writing in Markdown, having color coding and other support for M
|Command | Shortcuts |
|-------|--------|
| Shift + Shift | Allows you to find a file by searching for its name. |
| Ctrl + H | Find in whole project. (WebStorm uses the term "Find in "path".) |
| Edit > Find > Replace in Path | Replace in whole project. (Unfortunately, I can't find a keyboard shortcut for this common operation.) |
| Right-click > Refactor > Safe Delete | Allows you to delete a file. |
| Shift + Command + F | Find in whole project. (WebStorm uses the term "Find in "path".) |
| Shift + Command + R | Replace in whole project. |
| Command + F | Find on page |
| Shift + R | Replace on page |
| Right-click > Add to Favorites | Allows you to add files to a Favorites section, which expands below the list of files in the project pane. |
| Shift + tab | Applies outdenting (opposite of tabbing) |
| Shift + Function + F6 | Rename a file |
| Command + Delete | Delete a file |
| Command + 2 | Show Favorites pane |
| Shift + Option + F | Add to Favorites |
{{tip}} If these shortcut keys aren't working for you, make sure you have the "Max OS X 10.5+" keymap selected. Go to <b>WebStorm > Preferences > Keymap</b> and select it there. {{end}}
## Identifying changed files
@ -48,4 +56,4 @@ Rather than insert the frontmatter by hand each time, it's much faster to simply
## Disable pair quotes
By default, each time you type `'`, WebStorm will pair the quote. You can disable this by going to **WebStorm > Preferences > Editor > Smartkeys**. Clear the **Insert pair quotes** check box.
By default, each time you type `'`, WebStorm will pair the quote (creating two quotes). You can disable this by going to **WebStorm > Preferences > Editor > Smartkeys**. Clear the **Insert pair quotes** check box.

File diff suppressed because it is too large Load Diff