Jump to content

BOSS/Languages/Markdown

From Bath Wiki
Revision as of 08:00, 4 June 2026 by Hw2210 (talk | contribs) (Translate from boss.bathcs.com)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This is not a programming language, but all READMEs should be written in markdown, and this whole wiki is.

  • Tab size to 2 spaces

  • Use - over *

  • Max line length should be 80

  • Use blank lines to space things out!

    ## A title
    
    Some text
    
    - point1
    - point2
  • Code blocks should always have a filetype

    ```py
    print("Hi")
    ```
  • Anything relating to the point above should be indented and blank space left

    - point1
    
      some other paragraph
    
    - point2

Formatters do exist (e.g. prettier or biome) so use them please!