Help Builder
Formattings issues
Hi, I have been using West Wind Help Builder for a short time, but I find that it perfectly matches what I needed. I find it user-friendly. However, I have not yet found solutions for certain actions such as:
- Centering images and other photos,
- Changing the font of the characters,
- Changing the size of the characters. I hope there is a solution to resolve them. Best Regards.
Help Builder uses Markdown and native Markdown has no direct support for this.
However, Markdown is a superset of HTML so you can use any Html elements to wrap your Markdown or use raw Html to create more advanced layout.
For example:
## Some Header
Some body text.
<div style="text-align: center;">

</div>
More **Markdown Text

Just as a reminder - Help Builder has been discontinued some time ago and we recommend Documentation Monster which is its successor for a more modern solution. However, the rendering issues you mention above are going to be the same there - as it uses the same Markdown based rendering approach.
+++ Rick ---