-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: add more to doc guidelines and build (#180)
Signed-off-by: David B. Kinder <[email protected]>
- Loading branch information
Showing
8 changed files
with
190 additions
and
1,010 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
This file was deleted.
Oops, something went wrong.
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
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
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 |
---|---|---|
|
@@ -17,7 +17,6 @@ Documentation Guides | |
******************** | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
doc_guidelines | ||
graphviz | ||
|
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
Here's an example of markdown with two tab sets that are synchronized when | ||
chosen by the viewer: | ||
|
||
::::{tab-set} | ||
|
||
:::{tab-item} Linux | ||
:sync: Linux | ||
|
||
This content will show on the Linux tab | ||
::: | ||
:::{tab-item} macOS | ||
:sync: macOS | ||
|
||
This content will show on the macOS tab | ||
::: | ||
:::{tab-item} Windows | ||
:sync: Windows | ||
|
||
This content will show on the Windows tab | ||
::: | ||
:::: | ||
|
||
Some more content here followed by another tab set: | ||
|
||
::::{tab-set} | ||
|
||
:::{tab-item} Linux | ||
:sync: Linux | ||
|
||
This is more content that will show on this Linux tab | ||
::: | ||
:::{tab-item} macOS | ||
:sync: macOS | ||
|
||
This is more content that will show on this macOS tab | ||
::: | ||
:::{tab-item} Windows | ||
:sync: Windows | ||
|
||
This is more content that will show on this Windows tab | ||
::: | ||
:::: | ||
|
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
# synch local copy and origin with what's in upstream repo | ||
# assumes there's an origin and upstream remote defined in each of the repos | ||
|
||
# optionally, you can give a branch name as a first parameter and it will | ||
# checkout and sync all the repos to that branchname | ||
|
||
branch=${1:-main} | ||
|
||
for d in GenAIComps GenAIExamples GenAIEval GenAIInfra docs opea-project.github.io ; do | ||
cd ~/opea-project/"$d" | ||
echo "====" $d | ||
git checkout $branch | ||
git fetch upstream | ||
git merge upstream/$branch | ||
git push origin $branch | ||
done |
Oops, something went wrong.