home.social

#sqlprotools — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #sqlprotools, aggregated by home.social.

fetched live
  1. 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 🔬 ...