๐Ÿ“ข Happy to announce #MarkdownSQLProTools v1.0.0 release available to our sponsors on github:

๐Ÿ’– + ๐Ÿ’ต โค‘ ๐Ÿ› ๏ธ https://github.com/sponsors/RandomFractals/sponsorships?sponsor=RandomFractals&tier_id=295482

๐Ÿ“ฅ https://github.com/RandomFractals/markdown-sql-pro-tools/releases/tag/v1.0.0

#SQLProTools / #ProDataTools ๐Ÿง™โ€โ™‚๏ธ ...

Build software better, together

GitHub is where people build software. More than 150 million people use GitHub to discover, fork, and contribute to over 420 million projects.

GitHub

Fun RegEx to extract ```sql code blocks from .md docs for custom Execute #SQL @code lens, etc.:

const regex = /^```sql\s*([\s\S]*?)\s*```$/gm;
const matches = [];
let match;
while ((match = regex.exec(documentText)) !== null) {
matches.push(match[1]);
}

#Markdown #SQLProTools ๐Ÿ”ฌ ...