normalizeEmbedHtml static method

String normalizeEmbedHtml(
  1. String embedHtml
)

Strips duplicate widget scripts; oEmbed HTML includes one already.

Implementation

static String normalizeEmbedHtml(String embedHtml) {
  return embedHtml
      .replaceAll(
        RegExp(
          r'<script[^>]*embed\.bsky\.app[^>]*></script>',
          caseSensitive: false,
        ),
        '',
      )
      .trim();
}