Prior to 2020, the Manifold team used Jekyll to publish platform documentation. In late 2020, the team decided to transition all documentation to Docusaurus.
To work with the documentation, you'll need to get a recent version of Node installed. You'll also need to install the Yarn package manager.
Make sure node dependencies are present by running the following command from the root of the repository.
$ yarn install
$ yarn start
This command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server.
If your local enviroment does not start as expected and your Terminal reports that it cannot find a module, rerun the installation command from the top directory of your documentation repository: $ yarn install
.
$ yarn build
This command generates static content into the build
directory and can be served using any static contents hosting service.
All commits to the master branch will trigger a deployment to Github Pages via a Github Action. It is possible to manually deploy with this command:
GIT_USER=your-git-user yarn deploy
The current state of the master branch is always visible at https://manifoldscholar.github.io/manifold-docusaurus/
- Check your status relative to master:
$ git status
. - Create a new branch, using your initials as a prefix followed by a slash and the issue number for the section of documentation you're addressing:
git checkout -b xx/99
. - Stage the file or files you’ve modified:
git add filename.md
. - Commit your changes with a brief but meaningful commit message:
git commit -m "Commit message"
. - Push your commit from your local the remote repo using the name of the branch you created:
git push origin xx/99
. - Navigate your browser to the repo and create a pull request for the branch you just pushed: https://github.com/ManifoldScholar/manifold-docusaurus.
- Update your local environment with these commands:
git checkout master
- If you made changes to other files you didn’t include with your commit, next run
git stash
. This will stash your changes in a safe space, which you can apply in a moment. git fetch && git rebase origin/master
- If you stashed files, you can now reapply those adjustments by running
git stash apply
.
- Return to step 1 and begin work on another section.
To switch branches without creating a new one, simply omit the -b
flag from the checkout command above: git checkout xx/99
.
For common formatting options that aren’t covered below, see the Docusaurus documentation for suggestions and guidance: https://v2.docusaurus.io/docs/markdown-features/.
When linking from one section of documentation to another, use relative links that point to the target Markdown source files.
../../folder-name/filename.md
- Capitalize Manifold-specific terms like Projects, Texts, Resources, Resource Collections, Manifold Reader when used in the context of the application.
- Use quotation marks around terms and phrases when used to describe input or values for fields in the backend.
- Format field names as code.
Adjust the Text record’s
Title
field to read “Manifold Rocks!”
We are not yet ready to insert images, but we can include placeholders for visual content we want to include, formatted as
<placeholder
description=""
caption=""
alt=""
/>
When we are ready to insert images, we will them using JSX instead of Markdown formatting:
<img src={require('./assets/docusaurus-asset-example-banner.png').default} />