Chromium Code Reviews| Index: docs/README.md |
| diff --git a/docs/README.md b/docs/README.md |
| index 6bd588f43525d10f7019d98ffd59e76c01c42eda..c37c54d6ccb1db7c0b35186904d111e3346b9f7d 100644 |
| --- a/docs/README.md |
| +++ b/docs/README.md |
| @@ -8,5 +8,23 @@ It is automatically |
| Markdown documents must follow the [style guide]. |
| +## Previewing changes |
| + |
| +You can preview your local changes using [md_browser]: |
| + |
| +```bash |
| +# in chromium checkout |
| +python tools/md_browser/md_browser.py |
|
Jeffrey Yasskin
2015/12/18 23:54:21
While this is running, http://localhost:8080/ give
nodir
2015/12/19 00:18:15
I think md_browser should support file listing so
Jeffrey Yasskin
2015/12/19 00:24:14
Once md_browser supports file listing, this lgtm.
|
| +``` |
| + |
| +To review someone else's changes, apply them locally first: |
| + |
| +```bash |
| +# in chromium checkout |
| +git cl patch <CL number or URL> |
| +python tools/md_browser/md_browser.py |
| +``` |
| + |
| [Markdown]: https://gerrit.googlesource.com/gitiles/+/master/Documentation/markdown.md |
| [style guide]: https://github.com/google/styleguide/tree/gh-pages/docguide |
| +[md_browser]: ../tools/md_browser/ |