https://github.com/simplicitesoftware/documentation
Simplicité documentation
https://github.com/simplicitesoftware/documentation
documentation documentation-website low-code simplicite simplicitesofware
Last synced: about 2 months ago
JSON representation
Simplicité documentation
- Host: GitHub
- URL: https://github.com/simplicitesoftware/documentation
- Owner: simplicitesoftware
- Created: 2025-03-12T14:17:53.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2025-03-20T21:43:48.000Z (about 2 months ago)
- Last Synced: 2025-03-20T22:32:05.998Z (about 2 months ago)
- Topics: documentation, documentation-website, low-code, simplicite, simplicitesofware
- Language: Python
- Homepage: https://docsnew.simplicite.io/
- Size: 62.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simplicité Documentation
## Installation
```
$ npm install
```### Local Development
```
$ npm run start
```This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
## Deployment
The documentation is automatically deployed when changes are pushed to the master branch. GitHub Actions will:
1. Build the documentation
2. Deploy the updated content to GitHub Pages
3. Make it available at the public URLNo manual deployment steps are required - just push your changes to master.
⚠ Build will fail if broken links / anchors are detected
## Creating New Documentation
1. Create a new markdown file (`.md` or `.mdx`) in the appropriate directory under `docs/`.
2. For images:
- Create an `/img/document-name` directory in the same folder as your document
- Place related images in this directory
- Reference images using relative paths: ``### Documentation metadata
Markdown documents can use the following Markdown [front matter](https://docusaurus.io/docs/markdown-features#front-matter) metadata fields, enclosed by a line --- on either side.
Example :
```
---
id: doc-markdown
title: Docs Markdown Features
hide_title: false
hide_table_of_contents: false
sidebar_label: Markdown
sidebar_position: 3
pagination_label: Markdown features
custom_edit_url: https://github.com/facebook/docusaurus/edit/main/docs/api-doc-markdown.md
description: How do I find you when I cannot solve this problem
keywords:
- docs
- docusaurus
tags: [docusaurus]
image: https://i.imgur.com/mErPwqL.png
slug: /myDoc
last_update:
date: 1/1/2000
author: custom author name
---
```### Code blocks
You can add a `title` to the code block by adding a title key after the language (leave a space between them).
```js
console.log('What a great log');
```### Custom title ids :
The following syntax will allow a link to `[text](/url#my-explicit-id)` instead of the default `[text](/url#hello-world)`
````
### Hello World {#my-explicit-id}
```### Admonitions
In addition to the basic Markdown syntax, we have a special admonitions syntax by wrapping text with a set of 3 colons, followed by a label denoting its type.
See [Admonitions how-to](https://docusaurus.io/docs/markdown-features/admonitions)
### See more
https://docusaurus.io/docs/category/guides