src/docs/contributing/contributing-documentation.md
First of all, thank you for thinking about contributing to the docs! This is especially valuable while you're still new to Orchard because your experiences and revelations can help other newcomers a lot. Be sure to check out the general contribution docs first.
The Orchard Core documentation site is built with MkDocs and served from Read the docs.
!!! info Are you looking for information on contributing code? Head over to here instead.
!!! tip If you're looking for ideas on what to improve in the Orchard Core documentation, check out the documentation issues.
First, clone the repository using the command git clone https://github.com/OrchardCMS/OrchardCore.git and checkout the main branch. You can find the documentation files under the src/docs folder.
If you open the Orchard Core solution (OrchardCore.sln in the root) in Visual Studio or another IDE then you'll be able to browse the files in the OrchardCore.Docs project under the docs solution folder. If you use a Markdown editor (IDEs usually have built-in support for it, including Visual Studio) then you'll see all the Markdown formatting and embedded images in a WYSIWYG manner, and links will work too.
mkdocs.yml file, under the redirect_maps section.Do the following if you're adding docs for a newly developed extension, or if you add some other completely new topic (in which case adapt it to the section you add the topic to):
reference/modules with the same name as the module's project without OrchardCore.. E.g. for OrchardCore.AuditTrail use AuditTrail.README.md file to it, following the format of existing such files. There, add an overview of the extension's features, configuration, embed demo videos.README.md file from reference/modules/README.md.README.md file from the mkdocs.yml file in the repository root.README.md file from reference/modules/ContentParts/README.md.With MkDocs you can get the full docs.orchardcore.net experience locally too. If you are looking to contribute substantial amount of docs then please do run the site locally to make sure what you write will actually look like it should.
pip install mkdocs.python -m pip install -r src/docs/requirements.txt to install dependencies.python -m mkdocs serve to start the site. You'll then be able to browse it under http://127.0.0.1:8000.This happens in the same way as for code contributions, see there.