🇨🇴 Una base de datos de cursos en diferentes lenguajes.
🇫🇷 Une base de données de cours dans différents langages.
🇳🇴 En database med kurs på forskjellige språk.
🇺🇸 A flat-file database of courses in multiple languages.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
## Git
### The easy way
Use Gitlab's WebIDE.You won't be able to 100% accurately preview the result until you commit and the servers are updated.
### The powerful way
Run the website locally and preview your changes instantly.Head over to the [sources of the server instance](https://m3p2.ljbac.com/m3p2/grav-website) to learn how to set it up.
## File Structure
Each page is a directory.
### File names
We define as *slug-case* what some call *kebab-case*.
- lowercase- alphanumeric- joined with `-`- `a-z`, no diacritics- starts with a letter (probably best)
#### Directories
`[<NN>.]<slug>`
The numbers prefix can be ignored when building links, its purpose is to order sibling pages.
Set the english slug ; localized slugs can be set in frontmatters like so:
```yamltitle: Joyeux Noël!slug: joyeux-noel```
#### Markdown files
`<template>[.<lang>].md`
The *name of the file* will define the *template of the page*, that is how the content will appear.
> For example, the template `columns` will display the children of the page as columns.
The available templates are :- `default`- `portal`- `topics`- `topic`- `columns`- `textbook`- `cheatsheet`- `annex`
Right now there are not many differences between the various templates but there may be later.
#### Other files
- Use **slug-case** with the occasional snake between slugs.- Be expressive. This is an exercise in aphorisms. `fig-a_rays-through-convex-lens.png`- use a ISO 639-1 code as suffix like an extension like so: `textbook.fr.md`.
### Markdown Cheatsheet
```# Header like h1
## Header like h2
…###### Header like h6
_italic___underlined__*bold***strong**~~strike-through~~
Go [there](https://…)[Current chapter](.)[Parent chapter](..)[Sibling chapter](../another-chapter)[Child chapter](chapter)

! blue notice!! green notice!!! orange notice!!!! red notice!!!!!!!! another line on the red notice```
> More at Gitlab's [Markdown documentation](https://docs.gitlab.com/ee/user/markdown.html).
### LateX
You can use LateX in the courses :
$`E = m \cdot c^2`$
yields $`E = m \cdot c^2`$
> You can omit the _backticks_ (`) but the preview in gitlab won't work.
### Mermaid
You can display flowcharts in the courses :
``` mermaid graph LR subgraph Course File[File] end Student((Student)) Student --> |reads| File ```
yields
``` mermaidgraph LR subgraph Course File[File] end
Student((Student))
Student --> |reads| File```
> `LR` is for Left to Right. You could use `TB` for Top to Bottom.
GANTT diagrams and sequence diagrams are also available.Read on [mermaid's documentation](https://mermaidjs.github.io/) for more information.
### Table demo
| A | B | | D | ||---|---|---|---|---|| | | | | || | | X | | || | | X | | _test_ |
|