Convert wiki links to relative markdown links

This commit is contained in:
probablycorey 2013-08-14 15:52:00 -07:00
parent 6bc2a3a5e8
commit 41b57c673e
2 changed files with 21 additions and 21 deletions

View file

@ -1,6 +1,6 @@
## Synopsis ## Synopsis
The `ipc` module provides a few methods so you can send synchronous and asynchronous messages to the browser, and also receive messages sent from browser. If you want to make use of modules of browser from renderer, you might consider using the [[remote]] module. The `ipc` module provides a few methods so you can send synchronous and asynchronous messages to the browser, and also receive messages sent from browser. If you want to make use of modules of browser from renderer, you might consider using the [remote](remote.md) module.
An example of echoing messages between browser and renderer: An example of echoing messages between browser and renderer:

View file

@ -2,37 +2,37 @@
## Guides ## Guides
* [[Quick start]] * [Quick start](Quick-start.md)
* [[Build native modules]] * [Build native modules](Build-native-modules.md)
## Development ## Development
* [[Coding style]] * [Coding style](Coding-style.md)
* [[Source code directory structure]] * [Source code directory structure](Source-code-directory-structure.md)
* [[Build instructions (Mac)]] * [Build instructions (Mac)](Build-instructions-(Mac).md)
* [[Build instructions (Windows)]] * [Build instructions (Windows)](Build-instructions-(Windows).md)
## API References ## API References
Renderer side modules: Renderer side modules:
* [[ipc (renderer)]] * [ipc (renderer)](ipc-(renderer).md)
* [[remote]] * [remote](remote.md)
Browser side modules: Browser side modules:
* [[app]] * [app](app.md)
* [[atom-delegate]] * [atom-delegate](atom-delegate.md)
* [[auto-updater]] * [auto-updater](auto-updater.md)
* [[browser-window]] * [browser-window](browser-window.md)
* [[crash-reporter]] * [crash-reporter](crash-reporter.md)
* [[dialog]] * [dialog](dialog.md)
* [[ipc (browser)]] * [ipc (browser)](ipc (browser).md)
* [[menu]] * [menu](menu.md)
* [[menu-item]] * [menu-item](menu-item.md)
* [[power-monitor]] * [power-monitor](power-monitor.md)
Common modules: Common modules:
* [[clipboard]] * [clipboard](clipboard.md)
* [[shell]] * [shell](shell.md)