--- title: "Conventions 🧾" date: "2023-06-29T23:38:56+03:00" author: "editor-put-your-name-here" contributors: draft: false keywords: - internal abstract: | List of conventions to follow. Leave `draft: true` --- # Date format > DD.MM.YYYY as in 13.05.1998. # File naming conventions For file-naming conventions see ![Content creation instructions](article:int-content). # 'int-' prefix for files intended for *Internal* use Files purposed to be for internal use, and are *not public facing*: - start with `int-` , like this file `int-conventions.md` Their header file: - features the keyword `internal` - the draft flag is set to true, as in `draft: true` - suffix the abstract with: Leave `draft: true` # Images and attachments Place images or other attachments related to a specific article in the appropriate subdirectory inside the `root/static/` folder as in: ``` static/issue-x/author/image.png ``` So that it can be referenced from an article like so: ``` ![Image caption](/issue-x/author/image.png "optional mouse over/alt text") ``` *Note: When refencing an image or file provide a file path starting with a slash (`/`), and omit `static`.*