This commit is contained in:
Miha Kralj
2025-12-18 13:51:06 -08:00
parent 5d03dec741
commit 35e5571237
41 changed files with 2505 additions and 1617 deletions
+85
View File
@@ -208,6 +208,91 @@ Example: "We implement every indicator as streaming algo maintaining O(1) comput
**Performance Data:** Include test env specs, sample size, comparison baseline, statistical significance
## MARKDOWN LINTING RULES
Strict adherence to the following rules is required to ensure clean, consistent rendering:
- **MD022 (Headers)**: Headers must be surrounded by blank lines.
- *Incorrect*:
```markdown
# Header
Text
```
- *Correct*:
```markdown
# Header
Text
```
- **MD030 (List Spacing)**: Exactly one space after list markers.
- *Incorrect*: `* Item` or `*Item`
- *Correct*: `* Item`
- **MD032 (Lists)**: Lists must be surrounded by blank lines.
- *Incorrect*:
```markdown
Text
* Item 1
* Item 2
Text
```
- *Correct*:
```markdown
Text
* Item 1
* Item 2
Text
```
- **MD012 (Multiple Blank Lines)**: No multiple consecutive blank lines.
- *Incorrect*:
```markdown
Text
Text
```
- *Correct*:
```markdown
Text
Text
```
- **MD031 (Code Blocks)**: Fenced code blocks must be surrounded by blank lines.
- *Incorrect*:
```markdown
Text
```csharp
code
```
Text
```
- *Correct*:
```markdown
Text
```csharp
code
```
Text
```
## FINAL PRINCIPLES
1. Uncompromising standards, kind about people