Skip to content

Files

Latest commit

 

History

History
37 lines (20 loc) · 993 Bytes

README.md

File metadata and controls

37 lines (20 loc) · 993 Bytes

FSD documentation

An unofficial attempt at documenting the implementations of FSD used today. IVAO and VATSIM happen to be the most common ones, though there are likely others.

The documentation can be viewed here.

Editing and building the site

Individual pages can be edited using your favourite text or Markdown editor.

The entire documentation uses MkDocs.

sudo apt-get install mkdocs
cd fsd-doc
mkdocs build

This creates a directory named site/. The index page is located at site/index.html.

To see a live preview while editing, run the following:

mkdocs serve

Once running, the preview can be viewed at http://localhost:8000.

The table of contents on the left is controlled by mkdocs.yml. To edit it, please refer to the official MkDocs documentation.

Contributing

Feel free to fork and create a pull request!