3sublimated serves `.mdx` files at `run.sublimated.com/{space}/{path}.mdx`.
4
5## direct URLs
6
7every `.mdx` file is reachable by its full path:
8
9```
10file: anton/mysite/about.mdx
11url: run.sublimated.com/anton/mysite/about.mdx
12```
13
14## folder URLs
15
16behavior when you hit a folder URL (no filename) is still being finalized. safest is to reference pages by explicit filename in links for now.
17
18## linking between pages
19
20use absolute paths inside your space:
21
22```mdx
23see the [privacy policy](/anton/mysite/privacy.mdx).
24```
25
26relative links work inside the same folder:
27
28```mdx
29see the [privacy policy](privacy.mdx).
30```
31
32## custom domains
33
34custom domains let you serve pages without the `/anton/mysite/` prefix. see [TODO: domains doc] for setup. once mapped, `popssh.com/privacy` serves the same file as `run.sublimated.com/anton/code/sites/popssh.com/privacy.mdx`.
35
36## static assets
37
38serving binary files (fonts, images, favicons) from inside a folder is not yet documented. if you need custom fonts, use system font stacks for now.