Skip to content

Instantly share code, notes, and snippets.

View awaism551's full-sized avatar
💭
Always available, ping me

Muhammad Awais awaism551

💭
Always available, ping me
View GitHub Profile
@awaism551
awaism551 / markdownfiles.md
Last active August 19, 2023 18:55
All shortcuts and imp info about markdown files is being added in this gist

Basic Info

John Gruber and Aaron Swartz in 2004 created the Markdown language with the idea of enabling people “to write using easy to read and write plain text format and with the option of converting it to XHTML or HTML.

Finding Headers Quickly

  • vscode outline
  • go to header in current file, ctrl+shift+o
  • go to header in workspace, ctrl+t
  • Path to Header GFM

Md files code snippets

  • code snippets from command pallete in vscode by shortcut, ctrl+shift+p -> snippets->insert snippet

Other features of Md syntax

function onEdit(e) {
try {
if(e) {
var range = e.range;
var column = range.getColumn();
var row = range.getRow();
Logger.log(row)
if (column == 2) {
var sheet = range.getSheet();
var now = new Date();