-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix old or incorrect contents in the doc build instruction
Signed-off-by: Tatsuya Sato <[email protected]> (cherry picked from commit f4dba9d)
- Loading branch information
1 parent
f246243
commit b2c8d23
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -205,13 +205,14 @@ your GitHub account. | |
For International Languages (Malayalam as an example): | ||
```bash | ||
git clone [email protected]:hyperledger/fabric-docs-i18n.git | ||
cd fabric | ||
cd fabric-docs-i18n | ||
make docs-lang-ml_IN | ||
``` | ||
|
||
The `make` command generates documentation html files in the `build/html/` | ||
The `make` command generates documentation html files in the `docs/build/html/` | ||
folder which you can now view locally; simply navigate your browser to the | ||
`build/html/index.html` file. | ||
`docs/build/html/index.html` file. For International Languages, you need to read `docs/build/html/` as | ||
`docs/locale/${LANG_CODE}/_build/html/` (e.g., `docs/locale/ml_IN/_build/html/`). | ||
|
||
4. Now make a small change to a file, and rebuild the documentation to verify | ||
that your change was as expected. Every time you make a change to the | ||
|
@@ -222,7 +223,7 @@ your GitHub account. | |
|
||
```bash | ||
sudo apt-get install apache2 | ||
cd build/html | ||
cd docs/build/html | ||
sudo cp -r * /var/www/html/ | ||
``` | ||
|
||
|