-
Notifications
You must be signed in to change notification settings - Fork 100
testing docs
When writing docs for new features our policy is for you to test your build before submitting a PR. Make sure you have not introduced a critical bug. In general Asciidoctor is an excellent format for writers with minimal number of gotchas. However, there are a few caveats.
-
Checkout a local clone of our git repository and ensure you have followed our toolchain installation guide.
-
If you already had the checkout, clean old stuff:
make clean
-
Run configure for either Uyuni or SUSE Manager (one of them):
make configure-uyuni make configure-suma
-
To save time, build an individual language (This will skip building static html and pdf documents for each language). Unless you are working with translations you should only ever need to run a build against the English locale. For example for the english translation, use one of:
make antora-uyuni-en make antora-suma-en
-
The following command will build all of our translated html pages and PDF documents (Required for publishing to documentation.suse.com):
make antora-suma
-
Or, for Uyuni:
make antora-uyuni
All documents are placed into the build/LANG/
directory.
Review the following list while reviewing your work in the build directory index.html
and pdf/BOOKNAME
Visually inspect your work after a successful build:
-
Check the left navigation, does it appear as you expect? This ensures you have closed your Asciidoctor blocks (tables, examples, callouts, admonitions etc).
-
Check the html and PDF output for the part of the document you worked on. Ensure you are getting the results you expect, again check that you have closed your adoc blocks properly.
-
Are your entities correct?
{productname}
,{productnumber}
etc? PDF entities are currently stored inbranding/pdf/entities.adoc
. Entities must be adjusted here, and insuma-site.yml
anduyuni-site.yml
. We are working on a new process to reduce this to one configuration file -
In the html output enter a search term then hover over the result. Verify that the url leads to the correct destination (D.S.C, ghpages. The products webui currently should provide no search functionality)
-
Have you made branding changes? Has it affected the UI in any way?
-
After pushing a commit to your remote PR branch check GitHub actions to see if there are any failures, if so fix them or report the failure as an issue.
-
Does the build throw any noticeable errors? (Asciidoctor PDF or Antora)