Magpie HTML - v0.1.3
    Preparing search index...

    Interface SEOMetadata

    Basic SEO metadata extracted from standard HTML meta tags.

    Contains metadata from common SEO-related meta tags including title, description, keywords, and browser-specific tags.

    interface SEOMetadata {
        title?: string;
        description?: string;
        keywords?: string[];
        author?: string;
        generator?: string;
        viewport?: string;
        themeColor?: string;
        colorScheme?: string;
        applicationName?: string;
        appleMobileWebAppTitle?: string;
        appleMobileWebAppCapable?: boolean;
        appleMobileWebAppStatusBarStyle?: string;
    }
    Index

    Properties

    title?: string

    Page title from tag</p> </div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Anonyfox/magpie-html/blob/63e562292d2abe64c9975824b0198239e8cd5782/src/metadata/seo/types.ts#L19">src/metadata/seo/types.ts:19</a></li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="description"><code class="tsd-tag">Optional</code><span>description</span><a href="#description" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">description</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>Meta description for search results</p> </div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Anonyfox/magpie-html/blob/63e562292d2abe64c9975824b0198239e8cd5782/src/metadata/seo/types.ts#L22">src/metadata/seo/types.ts:22</a></li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="keywords"><code class="tsd-tag">Optional</code><span>keywords</span><a href="#keywords" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">keywords</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></div><div class="tsd-comment tsd-typography"><p>Keywords (legacy but still used)</p> </div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Anonyfox/magpie-html/blob/63e562292d2abe64c9975824b0198239e8cd5782/src/metadata/seo/types.ts#L25">src/metadata/seo/types.ts:25</a></li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="author"><code class="tsd-tag">Optional</code><span>author</span><a href="#author" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">author</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>Page author</p> </div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Anonyfox/magpie-html/blob/63e562292d2abe64c9975824b0198239e8cd5782/src/metadata/seo/types.ts#L28">src/metadata/seo/types.ts:28</a></li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="generator"><code class="tsd-tag">Optional</code><span>generator</span><a href="#generator" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">generator</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>Site generator (e.g., WordPress, Hugo)</p> </div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Anonyfox/magpie-html/blob/63e562292d2abe64c9975824b0198239e8cd5782/src/metadata/seo/types.ts#L31">src/metadata/seo/types.ts:31</a></li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="viewport"><code class="tsd-tag">Optional</code><span>viewport</span><a href="#viewport" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">viewport</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>Viewport settings</p> </div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Anonyfox/magpie-html/blob/63e562292d2abe64c9975824b0198239e8cd5782/src/metadata/seo/types.ts#L34">src/metadata/seo/types.ts:34</a></li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="themecolor"><code class="tsd-tag">Optional</code><span>theme<wbr/>Color</span><a href="#themecolor" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">themeColor</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>Browser theme color</p> </div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Anonyfox/magpie-html/blob/63e562292d2abe64c9975824b0198239e8cd5782/src/metadata/seo/types.ts#L37">src/metadata/seo/types.ts:37</a></li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="colorscheme"><code class="tsd-tag">Optional</code><span>color<wbr/>Scheme</span><a href="#colorscheme" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">colorScheme</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>Color scheme preference (light, dark, auto)</p> </div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Anonyfox/magpie-html/blob/63e562292d2abe64c9975824b0198239e8cd5782/src/metadata/seo/types.ts#L40">src/metadata/seo/types.ts:40</a></li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="applicationname"><code class="tsd-tag">Optional</code><span>application<wbr/>Name</span><a href="#applicationname" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">applicationName</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>Web application name</p> </div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Anonyfox/magpie-html/blob/63e562292d2abe64c9975824b0198239e8cd5782/src/metadata/seo/types.ts#L43">src/metadata/seo/types.ts:43</a></li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="applemobilewebapptitle"><code class="tsd-tag">Optional</code><span>apple<wbr/>Mobile<wbr/>Web<wbr/>App<wbr/>Title</span><a href="#applemobilewebapptitle" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">appleMobileWebAppTitle</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>iOS web app title</p> </div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Anonyfox/magpie-html/blob/63e562292d2abe64c9975824b0198239e8cd5782/src/metadata/seo/types.ts#L46">src/metadata/seo/types.ts:46</a></li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="applemobilewebappcapable"><code class="tsd-tag">Optional</code><span>apple<wbr/>Mobile<wbr/>Web<wbr/>App<wbr/>Capable</span><a href="#applemobilewebappcapable" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">appleMobileWebAppCapable</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">boolean</span></div><div class="tsd-comment tsd-typography"><p>iOS web app capable (standalone mode)</p> </div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Anonyfox/magpie-html/blob/63e562292d2abe64c9975824b0198239e8cd5782/src/metadata/seo/types.ts#L49">src/metadata/seo/types.ts:49</a></li></ul></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="applemobilewebappstatusbarstyle"><code class="tsd-tag">Optional</code><span>apple<wbr/>Mobile<wbr/>Web<wbr/>App<wbr/>Status<wbr/>Bar<wbr/>Style</span><a href="#applemobilewebappstatusbarstyle" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">appleMobileWebAppStatusBarStyle</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>iOS status bar style</p> </div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Anonyfox/magpie-html/blob/63e562292d2abe64c9975824b0198239e8cd5782/src/metadata/seo/types.ts#L52">src/metadata/seo/types.ts:52</a></li></ul></aside></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Properties</summary><div><a href="#title"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>title</span></a><a href="#description"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>description</span></a><a href="#keywords"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>keywords</span></a><a href="#author"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>author</span></a><a href="#generator"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>generator</span></a><a href="#viewport"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>viewport</span></a><a href="#themecolor"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>theme<wbr/>Color</span></a><a href="#colorscheme"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>color<wbr/>Scheme</span></a><a href="#applicationname"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>application<wbr/>Name</span></a><a href="#applemobilewebapptitle"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>apple<wbr/>Mobile<wbr/>Web<wbr/>App<wbr/>Title</span></a><a href="#applemobilewebappcapable"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>apple<wbr/>Mobile<wbr/>Web<wbr/>App<wbr/>Capable</span></a><a href="#applemobilewebappstatusbarstyle"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>apple<wbr/>Mobile<wbr/>Web<wbr/>App<wbr/>Status<wbr/>Bar<wbr/>Style</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html">Magpie HTML - v0.1.3</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p><footer class="tsd-page-footer"><div class="container"><p>Made with <span style="color: #e74c3c">♥</span> by <a href="https://anonyfox.com" target="_blank" rel="noopener">Anonyfox</a> e. K.</p><p style="margin-top: 1rem;"><a href="https://x.com/AnonyfoxCom" target="_blank" rel="noopener">🐦 @AnonyfoxCom</a> · <a href="mailto:max@anonyfox.com">✉️ max@anonyfox.com</a></p></div></footer></p></footer><div class="overlay"></div></body></html>