diff --git a/examples/buildless/basic.html b/examples/buildless/basic.html index 259c81f8..bd74d83b 100644 --- a/examples/buildless/basic.html +++ b/examples/buildless/basic.html @@ -22,5 +22,5 @@

This page shows how skypack can be used to import strudel core directly into a simple html page.
- No server, no bundler and no build setup is needed to run this!
+ No server, no bundler and no build setup is needed to run this!

diff --git a/website/src/layouts/MainLayout.astro b/website/src/layouts/MainLayout.astro index 190e0dd5..49952a7e 100644 --- a/website/src/layouts/MainLayout.astro +++ b/website/src/layouts/MainLayout.astro @@ -28,10 +28,6 @@ const githubEditUrl = `${CONFIG.GITHUB_EDIT_URL}/${currentFile}`; {frontmatter.title ? `${frontmatter.title} 🌀 ${CONFIG.SITE.title}` : CONFIG.SITE.title} - diff --git a/website/src/pages/technical-manual/project-start.mdx b/website/src/pages/technical-manual/project-start.mdx index db5c601b..64081625 100644 --- a/website/src/pages/technical-manual/project-start.mdx +++ b/website/src/pages/technical-manual/project-start.mdx @@ -61,18 +61,6 @@ n("<0 1 2 3 4>*8").scale('G4 minor') This will load the strudel website in an iframe, using the code provided within the HTML comments ``. The HTML comments are needed to make sure the browser won't interpret it as HTML. -This is the result: - -*8").scale('G4 minor') -.s("gm_lead_6_voice") -.clip(sine.range(.2,.8).slow(8)) -.jux(rev) -.room(2) -.sometimes(add(note("12"))) -.lpf(perlin.range(200,20000).slow(4))`}> - - For alternative ways to load this package, see the [@strudel/embed README](https://github.com/tidalcycles/strudel/tree/main/packages/embed#strudelembed). ### @strudel/repl @@ -98,16 +86,6 @@ n("<0 1 2 3 4>*8").scale('G4 minor') Here, we're loading `@strudel/repl` instead of `@strudel/embed`, and the component is called `strudel-editor` instead of `strudel-repl`. Yes the naming is a bit confusing.. -*8").scale('G4 minor') -.s("gm_lead_6_voice") -.clip(sine.range(.2,.8).slow(8)) -.jux(rev) -.room(2) -.sometimes(add(note("12"))) -.lpf(perlin.range(200,20000).slow(4))`}> - - The upside of using the repl without an iframe is that you can pin the strudel version you're using: ```html