Introduction
For markdown texts, we need to specify the languages for corresponding syntax highlighting.
Following is an example for highlighting c++ codes in markdown texts:
```cpp
bool getBit(int num, int i) {
return ((num & (1<<i)) != 0);
}```
Which becomes:
bool getBit(int num, int i) {
return ((num & (1<<i)) != 0);
}
More settigns
Please, follow this repo on GitHub
