mirror of https://github.com/abpframework/abp.git
Browse Source
Introduces support for extracting SEO metadata from document content by adding a new DocumentSeoDto, updating renderers to handle a new [doc-seo] section, and exposing this data in the project document page. The page now uses the SEO description if available, improving meta tag generation. Also adds error handling for scrollspy initialization in vs.js.pull/23940/head
6 changed files with 37 additions and 11 deletions
@ -0,0 +1,6 @@ |
|||
namespace Volo.Docs.HtmlConverting; |
|||
|
|||
public class DocumentSeoDto |
|||
{ |
|||
public string Description { get; set; } |
|||
} |
|||
Loading…
Reference in new issue