0.0.3 • Published 2 years ago

svelte-ld-json v0.0.3

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

svelte-ld-json

Easily add ld+json to your Svelte project

Example

<script>
  import LDtag from 'svelte-ld-json';
</script>

<LDtag
  schema={{
    '@context': 'https://schema.org',
    '@type': 'Person',
    name: 'John Doe',
    url: 'https://example.com/',
    sameAs: ['https://twitter.com/johndoe', 'https://facebook.com/johndoe']
  }}
/>