From 3c3a7c593daeed40a57d0b5f4c92a7133cd2f34f Mon Sep 17 00:00:00 2001 From: stereobooster Date: Wed, 1 Jan 2025 18:45:57 +0100 Subject: [PATCH] new idea --- .../src/content/docs/start-here/strategy.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/packages/docs/src/content/docs/start-here/strategy.md b/packages/docs/src/content/docs/start-here/strategy.md index f913d28..7da97f7 100644 --- a/packages/docs/src/content/docs/start-here/strategy.md +++ b/packages/docs/src/content/docs/start-here/strategy.md @@ -64,11 +64,13 @@ add `fsPath` (`public/beoe`) to `.gitignore` ## Pros and cons -| | `inline` | `data-url` | `file` | -| ------------------------------------------------------- | ------------ | ---------- | ------ | -| [Interactivity](/start-here/interactivity/) | yes | no | no | -| [Can be styled with CSS](/start-here/styling-with-css/) | yes | no | no | -| CSS conflicts | probably yes | no | no | -| [`...`](/start-here/accessibility/) | no | yes | yes | -| DOM footprint | high | low | low | -| HTML footprint | high | high | low | +| | `inline` | `data-url` | `file` | `iframe` (1) | +| ------------------------------------------------------- | ------------ | ---------- | ------ | ------------- | +| [Interactivity](/start-here/interactivity/) | yes | no | no | yes | +| [Can be styled with CSS](/start-here/styling-with-css/) | yes | no | no | no | +| CSS conflicts | probably yes | no | no | no | +| [`...`](/start-here/accessibility/) | no | yes | yes | yes (`title`) | +| DOM footprint | high | low | low | low | +| HTML footprint | high | high | low | low | + +1: `iframe` is the new idea. **Not implemented**