Skip to content

Instantly share code, notes, and snippets.

View Nps-rf's full-sized avatar
🏠
Working from home

Nikolai Pikalov Nps-rf

🏠
Working from home
  • Moscow
  • 13:21 (UTC +03:00)
  • LinkedIn in/nps-rf
View GitHub Profile

For markdown texts, we need to specify the languages for corresponding syntax highlighting.

Following is an example for highlighting c++ codes in markdown texts.

bool getBit(int num, int i) {
	return ((num & (1<<i)) != 0);
}