You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This document is maintained using Bikeshed.
See the section about markup in Bikeshed's documentation for full details about the syntax.
Only the source (index.bs) should be committed,
as this repository is configured to run bikeshed server-side and push the result to the gh-pages branch.
To run Bikeshed locally,
Follow the instructions in Bikeshed's documentation.
Once Bikeshed is installed, just type bikeshed to compile the document.
Setting up Branches
To set up long-lived topic branches which get built server side and published to github.io,
follow these steps:
On the main branch edit deploy.sh to add the name of your topic branch to the TOPIC_BRANCHES array. Example:
TOPIC_BRANCHES=("topic1""topic2""topic3")
(Optional Step) Edit the README.md file to line for your topic branch.
See the "Branches under development" section and use existing branches as a model.
Commit the change(s) above, and push to github.com/w3c/w3process (not your personal fork). Example:
git add deploy.sh README.md
git commit -m "Register topic branch for topic3"
git push upstream main
Create a new branch from the main branch (after the previous commit), using the same name as the one you used in the TOPIC_BRANCHES array, and push it to github.com/w3process (not your personal fork). Example: