| 1 | export const SHARED_PAGE_STYLES_START = '/* SHARED_PAGE_STYLES_START */' |
| 2 | export const SHARED_PAGE_STYLES_END = '/* SHARED_PAGE_STYLES_END */' |
| 3 | |
| 4 | export const pageContentStartMarker = (pageId: string): string => |
| 5 | `<!-- PAGE_CONTENT_START:${pageId} -->` |
| 6 | export const pageContentEndMarker = (pageId: string): string => `<!-- PAGE_CONTENT_END:${pageId} -->` |
| 7 |