We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the description attribute should automatically render as a <meta> attribute in the rendered HTML.
description
<meta>
Eg:
= Title :description: a description
gives
<!DOCTYPE html> ... <meta name="description" content="a description"> <title>Document Title</title> ...
The text was updated successfully, but these errors were encountered:
feat(renderer): support for description metadata
e9a287c
appears in HTML document as a `<meta name="description" content="...">` tag fixes bytesparadise#892 Signed-off-by: Xavier Coulon <[email protected]>
feat(renderer): support for description metadata (#893)
3c71438
appears in HTML document as a `<meta name="description" content="...">` tag fixes #892 Signed-off-by: Xavier Coulon <[email protected]>
xcoulon
Successfully merging a pull request may close this issue.
the
description
attribute should automatically render as a<meta>
attribute in the rendered HTML.Eg:
gives
The text was updated successfully, but these errors were encountered: