Smeargle's Tail is a #vscode #extension that makes it easy for you to write a Markdown document of your module or file through the programming language's comment syntax. All you have to do is write comments in specific areas of your code.
Supported Languages : JavaScript, TypeScript, Rust, C++.
How to use
add this line at the top of your file //SMEARGLE-MAKE-DOCUMENT
you can write any of the following in /*.....*/ as comments
use @| My Heading to add a heading to your document
use -| any markdown-supported-syntax or text |- to add content below the heading
Example
/*
@| SampleFunction()
-|
This is a sample function named ``SampleFunction``. It does nothing haha.
Or maybe it does something, we don't know.
|-
*/```