Skip to content

How to write documentation#

All documentation files should be written in Markdown documents (.md).

If you are not familiar with the Markdown syntax, check out Adam Pritchard's Markdown Cheatsheet which includes the standard Markdown syntax as well as the extended GFM (GitHub Flavored Markdown) that we will be utilizing in this guide.

For consistency reason, we recommend you to use syntax given in this guide (not using available alternatives)

Preferred Markdown syntax#

Headers#

  • Use hash (pound) character(s) to define H1-H6 headers.

# H1
## H2
### H3
#### H4
##### H5
###### H6

Emphasis#

  • Use asterisks (*) for emphasis (aka italics).
  • Use double asterisks (**) for strong emphasis (aka bold).
  • Use double tilde (~~) for strikethrough text.
  • Use double equals (==) for highlighted text.
I'm *italics* text.  
I'm **bold** text.  
I'm ~~strikethrough~~ text.  
I'm ==highlighted== text.

I'm italics text.
I'm bold text.
I'm strikethrough text.
I'm highlighted text.

Lists#

  • Use hyphen - followed by space for unordered list.
  • Use four spaces indentation for unordered lists.
    (in standard syntax it is two spaces, and markdownlint will show warning MD007, disable it or configure to 4 spaces in config file)
  • Use four spaces indentation for paragraphs within list items (after blank line).
  • To have a line break without a paragraph, you will need to use two trailing spaces.
1. First ordered list item
2. Another item
    - Unordered item
        - Nested item
3. Third item

    Blank line and four space indentation for paragraph.
    This line  
    was interrupted by two trailing spaces.
  1. First ordered list item
  2. Another item
    • Unordered item
      • Nested item
  3. Third item

    Blank line and four space indentation for paragraph. This line
    was interrupted by two trailing spaces.

  • Use the reference links wherever possible, instead of inline-style links.
  • Reference text can be arbitrary and case-insensitive, but use words in lower case separated by hyphen(s).
  • For relative links to other pages in docs folder, don't forget extension .md
  • In rare and reasonable cases, you can use an inline-style link.
  • Place link definition(s) throughout the content of a document, immediately after paragraph (or semantic block) where it was mentioned. Preferably, in order of their appearance in the text. There might be exceptions for individual documents, where the list of link definitions at the end of a document is a reasonable idea.
[Selene][selene-github] is cool,  
especially with good [docs][home-docs].  
[I'm an inline-style link](https://t.me/selene_py_ru)

[selene-github]: https://github.com/yashaka/selene/
[home-docs]: ../index.md

Selene is cool, especially with good docs.
I'm an inline-style link

Images#

  • For better accessibility, we encourage you to specify alt text and title for images.
  • If you need to make new picture(s) for page, please use external optimization tools (for example, Squoosh, TinyPNG and SVGOMG) to shrink your images, before you commit them to git repository.
  • Put your new images in assets subfolder for each section (/learn-basics/, /faq/, /use-cases/, etc.). For example ./docs/faq/assets/chrome-driver-window.png and use relative URL to it (see example below).
  • Use popular formats for your images, like JPEG, PNG, WebP and SVG.
Here's our logo (hover to see the title text):

Inline-style: 
![Relative to outside path](../assets/images/logo-icon.png "Selene logo")

Reference-style: 
![alt text][logo]

[logo]: ../assets/images/logo-icon.png "Title in link definition"

Here's our logo (hover to see the title text):

Inline-style: selene logo

Reference-style: alt text

Code and Syntax Highlighting#

  • Use only fenced code blocks (fenced by lines with three back-ticks ```).
  • Write language identifier right after back-ticks (without space).
  • For plain text (console output) use plain language identifier.
  • In Python code use only single quotes, i.e. 'This is string'
  • Do NOT use disinformative names for variables and uncommon abbreviations (might be exception for a variable used in a one-line lambda expression).
```python
from selene import browser
from selene import by, be, have

browser.open('https://google.com/ncr')
browser.element(by.name('q')).should(be.blank)\
.type('selenium').press_enter()
browser.all('.srg .g').should(have.size(10))\
.first.should(have.text('Selenium automates browsers'))
``` 
from selene import browser
from selene import by, be, have

browser.open('https://google.com/ncr')
browser.element(by.name('q')).should(be.blank)\
.type('selenium').press_enter()
browser.all('.srg .g').should(have.size(10))\
.first.should(have.text('Selenium automates browsers'))

Horizontal Rule#

  • Use three hyphens (minuses) --- between to blank lines to insert horizontal rule (if you really need to do that)
text above the line

---

text under the line

text above the line


text under the line

Line Breaks#

  • Use two trailing space every time when you want to insert new line in the same paragraph on rendered page too (analog <br> in HTML).
  • Use semantic linefeeds, wrapping lines by 72-80 characters except for links and images and .md files in project root (unfortunately, GitHub renders each newline character).
  • Paragraphs are separated by a blank line.
Selene was inspired by Selenide from Java world.

Tests with Selene can be built either in
a simple straightforward "selenide' style
or with PageObjects composed from Widgets
i.e.  
reusable element components.

Selene was inspired by Selenide from Java world.

Tests with Selene can be built either in a simple straightforward "selenide' style or with PageObjects composed from Widgets i.e.
reusable element components.

Footnotes, Tables, Blockquotes#

Info

Such blocks as: Footnotes, Tables, Blockquotes, Inline HTML are the same as described in the cheat sheet, mentioned at the beginning of this page. Please, refer to it.

Material theme blocks#

Admonitions#

Admonitions, also known as call-outs, are an excellent choice for including side content without significantly interrupting the document flow. How to use them, please, refer to the Admonitions reference page.

Our recommendations:

  • Try to avoid several admonitions in a row (even with different types).
  • Place link definition after the content of the block followed by one blank line (indented by four spaces, as the content).

<!-- markdownlint-disable MD046 -->
!!! info "Example of inserting a link into admonition"

    There are several [types][admontion-types] of admonitions

    [admontion-types]: https://squidfunk.github.io/mkdocs-material/reference/admonitions/#supported-types
<!-- markdownlint-enable MD046 -->

Example of inserting a link into admonition

There are several types of admonitions

Other#

There are many other special formatting blocks, supported by Material theme for MkDocs. You can see all of them on Reference page. Before using available (free) blocks, check that they are enabled (configured) in mkdocs.yml configuration file (markdown_extensions: setting for most of them) and discuss with project owner or other contributors should you insert (use) them or not.


Last update: 2023-03-13
Created: 2023-02-27