VisualStudioCode - zollak/pentest-notes GitHub Wiki

Visual Studio Code Tips and Tricks

Official sites:

I use the following extensions in VS Code:

Python

ms-python.python

VS Code icons

wayou.vscode-icons-mac

Atom Keymap

ms-vscode.atom-keybindings

Auto Markdown TOC

huntertran.auto-markdown-toc

Generate TOC (table of contents) of headlines from parsed markdown file.

If you want to use a unique setting for a file, you can add attributes to , just like:

<!-- TOC depthFrom:1 orderedList:true -->

Generate a file tree TOC for a directory of markdown files from command line:

$ python md_file_tree.py README.md

Note: you should add the additional file extensions into the md_exts variable on line 101 that you want to present in the TOC.

Github Markdown Preview

bierner.github-markdown-preview

howto: https://code.visualstudio.com/Docs/languages/markdown#_markdown-preview

Online Markdown editor (it has WYSWYG): https://stackedit.io/app#

https://ourcodeworld.com/articles/read/707/how-to-convert-html-to-markdown-with-javascript-using-turndown

⚠️ **GitHub.com Fallback** ⚠️