bundle export

This commit is contained in:
2026-07-08 23:19:14 -04:00
parent 5e9d8f1b34
commit 02911e0357

View File

@@ -1,7 +1,7 @@
#set heading(numbering: "1.1 -") #set heading(numbering: "1.1 -")
#set document(title: [The EID Wireless Masterclass]) #set document(title: [The EID Wireless Masterclass])
#show: it => document("index.html", html.html( #let doc(path, it) = document(path, html.html(
lang: "en", lang: "en",
{ {
html.head({ html.head({
@@ -18,13 +18,13 @@
)) ))
#{ #{
include "content/index.typ" doc("index.html", include "content/index.typ")
include "content/core.typ" doc("core.html", include "content/core.typ")
include "content/data-protocols.typ" doc("data-protocols.html", include "content/data-protocols.typ")
include "content/interference-causes.typ" doc("interference-causes.html", include "content/interference-causes.typ")
include "content/interference-fixes.typ" doc("interference-fixes.html", include "content/interference-fixes.typ")
include "content/design.typ" doc("design-notes.html", include "content/design.typ")
include "content/channels.typ" doc("channel-selectors.html", include "content/channels.typ")
include "content/bulk.typ" doc("bulk-transmission.html", include "content/bulk.typ")
include "content/network.typ" doc("network-protocols.html", include "content/network.typ")
} }