This is the repository holding all documentation related to developing apps on the MapsIndoors platform.
The documentation site is built with Eleventy.
Eleventy automatically builds and deploys from the main
branch in this repository. Only members of this organization can approve Pull Requests into the main
branch.
- Node
-
Clone this repository to your machine:
git clone git@github.com:MapsPeople/docs cd docs
-
Install dependencies
npm i
-
Run Eleventy
npm run start
OR IF THAT DOESN'T WORK
eleventy --serve
-
Create a feature branch:
git checkout -b feature/teleportation-guide
-
Copy an existing
.md
-file from e.g../ios/v3/search/
to./ios/v3/teleportation/
. -
The Front matter at the top of the file only needs to things;
title
andeleventyNavigation
:--- title: Teleportation eleventyNavigation: key: Teleportation parent: ios-v3-teleportation order: 420 ---
tags
andlayout
are defined in the*.json
-files named after their parent folders to avoid having to write it for every file. -
Navigate to your new page to check it out.
-
If all looks well, use
git
to add, commit and push your new page:git status git add . git commit -m "Added new guide to Teleportation" git push -u origin feature/teleportation-guide
-
Go to docs.mapsindoors.com to see your new page live.
You might need to add a new folder alongside the existing "Map", "Searching", "Data" and "Directions" folders. In order to ensure that the exisiting templates are applied correctly, and that these folders can feature in, for example, the sidebar and footer, there are some steps you must take.
If in doubt for any of these steps, take a look at how it's already done in .eleventy.js
, sidebar.njk
and footer.njk
.
- In
.eleventy.js
, add the following lines of code:
eleventyConfig.addCollection("REPLACE", function (collectionApi) {
return collectionApi.getFilteredByTags("REPLACE");
});
This creates a "collection", which gathers all the files under this new root folder to a combined entity. Replace "REPLACE" with whatever you wish to name your collection, often the same as the name of the folder.
- In
sidebar.njk
, to ensure your new folder displays a sidebar, add the following code:
{% if '/REPLACE' in page.url %}
<p class="sidebar__header"><a href="/replace/">REPLACE</p>
{% set navPages = collections.published | eleventyNavigation("REPLACE") %}
{% endif %}
Replace "REPLACE" with the name of the collection to created in Step 1.
- Lastly, you might want to ensure that your new menu features in the footer as well. To do this, insert the following code in
footer.njk
<h2>
<a href="/REPLACE/">REPLACE</a>
</h2>
<ul class="list">
{% set REPLACE = collections.published | eleventyNavigation("REPLACE") %}
{%- for entry in REPLACE %}
{{ renderNavListItem(entry) }}
{%- endfor -%}
</ul>
Replace "REPLACE" with the name of your collection. Your menu should now appear in the footer as well.
-
Use feature-branches. That makes it much easier to review new tutorials before they're live.
-
The folder structure determines the url structure of the page.
-
The
*.json
-files named for their parent folders are used to inject data into the Markdown-files in that folder. That way you can set the template for all files without repeating yourself in each file's Front Matter, or set a tag on all pages to add it to a collection to set up navigation. -
If a page has the same
key
ineleventyNavigation
as another page, we have a problem. You can override what is displayed in the sidebar by setting atitle
undereleventyNavigation
and making thekey
something distinct. -
Creating a redirecting page
Set the front matter to the following:
layout: redirect destination: /path/to/page/
Eleventy uses Markdown (cheatsheet) for rendering posts to html.
To ensure consistency throughout the Markdown-files, we use a linter. The best linter for VS Code is the extension with the telling name "VS Code Markdownlint".
Two rules are turned off specifically: