fix: 🐛 bug: ultrahtml does not handle all html strings. add switch to enable standard html fragment tag instead. #115

Merged
create-issue-branch[bot] merged 4 commits from issue-114-bug_ultrahtml_does_not_handle_a into main 2024-03-13 06:22:39 +00:00
2 changed files with 11 additions and 0 deletions
Showing only changes of commit 1e3940fbe4 - Show all commits

View File

@ -0,0 +1,8 @@
---
"@matthiesenxyz/astro-ghostcms-brutalbyelian": patch
"@matthiesenxyz/astro-ghostcms-theme-default": patch
"@matthiesenxyz/astro-ghostcms-catppuccin": patch
"@matthiesenxyz/astro-ghostcms": patch
---
Adds a toggleswitch to allow users to disable astro-remote usage for rendering ghost-content

View File

@ -66,6 +66,9 @@ export default defineConfig({
ThemeProvider: { // Allows you to pass config options to our ThemeProvider if enabled.
disableThemeProvider: false, // OPTIONAL - Default False
theme: "@matthiesenxyz/astro-ghostcms-theme-default", // OPTIONAL - Default Theme shown.
astroRemote: {
enable: true // OPTIONAL - Default True, Allows the user to switch to standard <Fragment> html rendering if they are having issues with Astro-remote
}
};
disableDefault404: false, // Allows the user to disable the default `/404 page, to be able to create their own under `/src/pages/404.astro`.
enableRSSFeed: true, // Allows the user to Enable or disable RSS Feed Generation. Default: true