diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md index 7e966d1f..0390382c 100644 --- a/ARCHITECTURE.md +++ b/ARCHITECTURE.md @@ -16,26 +16,26 @@ These workers and iframes are controlled by various Playground elements like `

}}; + IDE{{playground-ide}}; subgraph Project; - ProjectElement{{<playground-project>}}; + ProjectElement{{playground-project}}; WebWorker(Build Worker); - ProxyIframe[Proxy <iframe>]; + ProxyIframe[Proxy iframe]; end; subgraph Editors; - FileEditor1{{<playground-file-editor>}}; - FileEditor2{{<playground-file-editor>}}; + FileEditor1{{playground-file-editor}}; + FileEditor2{{playground-file-editor}}; end; subgraph Preview; - PreviewElement{{<playground-preview>}}; - PreviewIframe[Preview <iframe>]; + PreviewElement{{playground-preview}}; + PreviewIframe[Preview iframe]; end; subgraph Network; ServiceWorker(Service Worker); CDN([CDN]); end; - IDE -...-> Project; + IDE -.-> Project; IDE -.-> Editors; IDE -.-> Preview; WebWorker -- Built Project Files --> ProjectElement;