Troubleshooting TechDocs
Published on September 18th, 2023Visual differences in rendered output
Backstage is using MkDocs and python-markdown to render the markdown files for tech docs. Each markdown implementation renders HTML differently. e.g. markdown files as displayed in GitHub can often look different within Backstage Tech Docs.
Nest Markdown in a collapsable section
If you would like to nest markdown in a collapsable section, you can use the HTML details
component and the md_in_html
markdown plugin.
First add the md_in_html
to the mkdocs.yaml
file.
markdown_extensions:
- md_in_html
Then add the following details
section to the markdown file.
<details markdown="1">
<summary>Collabsable Title</summary>
Content of the collapsable and an image below
![asdf](align.jpg)
</details>
Nest Image within a list
If you would like to nest an image within a list so that it appears as part of the list item, you will need a line break and spacing before the image. e.g.
- Item 1
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
![image1](image1.jpg)
- Item 2
![image2](image2.jpg)
Slow Tech Docs builds
Larger tech docs repositories can take some time to build when being updated or viewed for the first time.
There are two ways around this currently:
-
Make sure your entity with the relevant tech docs annotation is listed in the root
catalog-info.yaml
file of your repo and the docs are in a rootdocs/
folder. If this is the case AND your admins have set up the correct autodiscovery in Roadie for Github based repositories, changes to your docs should be built when they are merged to the default repository branch, so you won’t have to wait for docs to build when viewing them. -
Your organisation can start building and publishing tech docs via your own CI pipelines so that the latest version is always ready to view in Roadie.