Generates author meta tags for the HTML head section.
Provides basic author information for search engines.
import { author } from '@raven-js/beak/seo';// Basic author informationconst tags = author({ name: 'John Doe', email: 'john@example.com'});// Output:// <meta name="author" content="John Doe" />// <meta name="reply-to" content="john@example.com" /> Copy
import { author } from '@raven-js/beak/seo';// Basic author informationconst tags = author({ name: 'John Doe', email: 'john@example.com'});// Output:// <meta name="author" content="John Doe" />// <meta name="reply-to" content="john@example.com" />
Configuration object for author tags
The generated author meta tags as an HTML string
Generates author meta tags for the HTML head section.
Provides basic author information for search engines.
Example