Shaun Walker

Results 210 comments of Shaun Walker

@zyhfish we can't change the base tag as there are a variety of things which depend on it. Have you tried to specify the hyperlink as "/#test"? Have you tested...

@zyhfish if I am on the Blog page (https://www.oqtane.org/blog) and click on the About link in the menu (which links to the home page with path "/" and anchor #about)...

@zyhfish so the simple solution is if you want to link to an anchor, include the relative page path in the hyperlink: ``` Click Me ```

Blazor requires the specification of `````` (https://learn.microsoft.com/en-us/aspnet/core/blazor/host-and-deploy/?view=aspnetcore-8.0&tabs=visual-studio#app-base-path) which causes issues with naked anchor tags (ie. "#anchor"). This problem is actually not specific to Blazor - it is a problem with...

closing as I do not believe there is a solution

@thabaum just to clarify... the HTML4 and HTML5 specifications do not technically support `````` elements in the body of an HTML document - they only support them in the head....

Oqtane already supports Head Content and Body Content at both the Site level and Page level: ![image](https://github.com/oqtane/oqtane.framework/assets/4840590/76c773bd-9375-4a8a-9028-31e810cf11c4) `````` elements specified as Head Content will be injected into the head of...

@thabaum the Site/Page Head Content should be injecting the `````` information - perhaps there is a bug in the logic which parses the field to extract the scripts (which need...

@thabaum I have confirmed that this ThemeBuilder.razor method does not handle `````` tags: ``` private string AddHeadContent(string headcontent, string content) { if (!string.IsNullOrEmpty(content)) { // format head content, remove scripts,...

@thabaum I believe #4435 resolves this issue for Site and Page HeadContent - you should be able to include `````` elements which are injected into the page.