π’ 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 π§ββοΈ
#prodatatools #sqlprotools #markdownsqlprotools
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 π¬ ...