head
Here are 79 public repositories matching this topic...
Currently, vue-head removes links with duplicated id (so if there was <link id="a"> rendered in source, and link with id: 'a' is rendered in runtime, then the previous one is removed).
I would really love if there was an option to also remove duplicated by hreflang attribute, so if there's a link like so in source:
<html>
<head>
<link hreflang="en-GB"/>
</head>
and I
Could someone explain or point out the reference for me to understand the below snippet
# X-Axis pointing to right. drawn in red
x1 = size * (cos(yaw) * cos(roll)) + tdx
y1 = size * (cos(pitch) * sin(roll) + cos(roll) * sin(pitch) * sin(yaw)) + tdy
# Y-Axis | drawn in green
# v
x2 = size * (-cos(yaw) * sin(roll)) + tdx
y2 = size * (cos(pitch) * cos(roll)
-
Updated
Apr 28, 2020 - Python
As per discussion in #18, creating an issue that can serve as starting point for some documentation around using react-head with SSR streaming. Both #14 and #18 mention that there is support for it, just no recommended usage.
For reference, here are the docs that react-helmet-async has for streaming SSR:
https://github.com/staylor/react-helmet-async#streams
cc: @jamesjjk
-
Updated
Jan 9, 2020 - PHP
Adding prototypes for $titlePrefix & $titleSuffix or variant allowing you to modify the options and re calling SetTitle within index.js would be helpful for tasks such as showing notification/new message counts dynamically, independent of what the current title is set to by another component.
-
Updated
May 12, 2020
Description
The VuePress documentation recommends to use $withBase() to include images when
You example:
$tags->jsonld([
'@context' => 'http://schema.org',
'@type': 'Person',
'name': 'Pedro Borges'
]);
must be:
$tags->jsonld([
'@context' => 'http://schema.org',
'@type' => 'Person',
'name' => 'Pedro Borges'
]);
thanks for you class
-
Updated
Aug 16, 2017 - Objective-C
Question:
Lazysizes does not calculate size correctly. Images are all lowrez/pixelated.
Answer:
if using loadjs from this plugin you probably have to use the css and js to load the main css file and lazysizes javascript file. That way you force the browser to wait for the css to be loaded and applied before starting lazysizes.
return -
Updated
Oct 19, 2019 - MATLAB
-
Updated
May 13, 2020 - Shell
-
Updated
Mar 3, 2020 - OCaml
-
Updated
Jun 11, 2020 - Reason
-
Updated
Jun 18, 2018
Improve this page
Add a description, image, and links to the head topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the head topic, visit your repo's landing page and select "manage topics."
It's probably worth expanding on the script element.
At the very least I'd mention that
<script src="..."></script>blocks content rendering while the script loads and executes, and add a non-blocking example with<script async src="..."></script>.The scope of this project is not to explain every feature of each element that can go in
<head>, but for important features it's probably a goo