"git@transfer.hft-stuttgart.de:digitwins4peds/application.git" did not exist on "85d43ad30d2343ad7458bd8a7a73105b0b7cbaf8"
Verified Commit 621fd4b1 authored by Lukas Wiest's avatar Lukas Wiest 🚂
Browse files

refactor(docs): dev-guide: styleguide: add markdown table example

parent c6b689c3
...@@ -80,3 +80,20 @@ most important bullet points: ...@@ -80,3 +80,20 @@ most important bullet points:
> Some sentence that is very long, > Some sentence that is very long,
> therefore it has punctuation > therefore it has punctuation
> and has absolutely no sense at all. > and has absolutely no sense at all.
- tables have to be formatted in code
??? example
__bad:__
```markdown
||column 1|
|:-|:-|
|__row 1__|cell 1|
```
__good:__
```markdown
| | column 1 |
| :-------- | :------- |
| __row 1__ | cell 1 |
```
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment