Mattermost - jniedzie/SVJanalysis_wiki GitHub Wiki

We use Mattermost to discuss on the analysis.

To use Mattermost, follow the instructions below:

Here are some guidelines to to format messages:

  • You can write bullet points by starting the line with *
  • You can write variables using ` on both side of the variable
  • You can write code writing ``` on a new line before and after the code.
  • You can specify the code using ```python for python for instance
  • You can mention specific people using @

E.g.

x = 1
print(x)

is written
```python
x = 1
print(x)
```