Skip to content
This repository has been archived by the owner on Mar 8, 2021. It is now read-only.

Contributing to the Documentation

modxuser edited this page Feb 22, 2017 · 14 revisions

If you would like to add to the general documentation, Extras (Snippets + Modules) documentation and tutorials then please use the following as a guide:

In general if you want to create a page or add information to an existing page, headlines need to be nested as:

  • H2 - Main section heading
  • H3 - Sub-heading

Note: H1 is declared by the system and shouldn't be used within the page content

"Section"s and "Article"s are not required and as such shouldn't be used

Tables when used should use the following set-up:

<table>
  <thead>
    <tr>
      <th></th>
      <th></th>
      <th></th>
      <th></th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td></td>
      <td></td>
      <td></td>
      <td></td>
    </tr>
  </tbody>
</table>

If headers are not used, the following applies:

<table>
  <tbody>
    <tr>
      <td></td>
      <td></td>
      <td></td>
      <td></td>
    </tr>
  </tbody>
</table>
Clone this wiki locally