- Support portal
- Evaluation Kits and partner products
u-blox Support
- Product documentation
Documentation
- About
- Sustainability
- Partners and Alliances
- Contact
About u-blox
- Investor relations
Investor relations
The html needs to be provided in a single html.
Please do not add any JavaScript or CSS to the file.
An image folder with images, that are used within the documentation, can be included.
The name of the html file can be choosen freely.
The name of the image folder has to be ‘images’.
repository │ documentation.html │ └───images │ │ image.jpg │ │ image2.png │ │ image3.gif │ │
The html file needs and should have the following structure.
Text in all caps can be replace with custom values.
TITLE will be used as the title of the documentation in the left sidebar.
<html> <head> <title>TITLE</title> </head> <body> <section id="ID1"> <h1>SECTION_TITLE</h1> // SECTION BODY defintion see blow </section> </body> </html>
The body can contain multiple sections, each section will become its own page
The following elements can be used within the section body
All headlines are always nested within the section body of the previous higher level headlines
h2 headlines will appear in the right sidebar navigation
<section id="ID"> <h2> TITLE </h2> // SECTION BODY </section>
<section id="ID"> <h3> TITLE </h3> // SECTION BODY </section>
<section id="ID"> <h4> TITLE </h4> // SECTION BODY </section>
<section id="ID"> <h5> TITLE </h5> // SECTION BODY </section>
<strong>TEXT/strong>
<em>TEXT</em>
<s>TEXT</s>
<blockquote> //HTML <blockquote>
<ul> <li> //HTML </li> <li> //HTML </li> // MORE ITEMS </ul>
<ol> <li> //HTML </li> <li> //HTML </li> // MORE ITEMS </ol>
<pre> LINE_1 LINE_2 LINE_3 </pre>
The classes of the rows always alternate between ‘row-odd’ and ‘row-even’, starting with ‘row-odd’
<table class="docutils align-default"> <thead> <tr class="row-odd"> <th class="head"><p>TITLE</p></th> <th class="head"><p>TITLE 2</p></th> // MORE TABLE HEADERS </tr> </thead> <tbody> <tr class="row-even"> <td> <p> // HTML </p> </td> <td> <p> // HTML </p> </td> </tr> <tr class="row-odd"> // ROW CONTENT </tr> // MORE ROWS </tbody> </table>
Links within the documentation
<a role="doc-backlink" href="#ANCHOR">LABEL</a>
External links
<a class="reference external" href="URL" title="TITLE">LABEL</a>
Example | Output |
---|---|
|
All images need to placed in a folder named ‘images’. Images for the following types can be used: jpg, png and gif.
<img alt="ALT" src="RELATIVE_PATH" />