We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e694425 + 5531760 commit 47616e9Copy full SHA for 47616e9
src/content/reference/en/p5.Font/textToContours.mdx
@@ -59,7 +59,7 @@ example:
59
60
async function setup() {
61
createCanvas(100, 100);
62
- font = await loadFont('//assets/inconsolata.otf');
+ font = await loadFont('/assets/inconsolata.otf');
63
}
64
65
function draw() {
src/content/reference/en/p5/vertex.mdx
@@ -185,7 +185,7 @@ example:
185
let vid;
186
function setup() {
187
// Load a video and create a p5.MediaElement object.
188
- vid = createVideo('//assets/fingers.mov');
+ vid = createVideo('/assets/fingers.mov');
189
createCanvas(100, 100, WEBGL);
190
191
// Hide the video.
0 commit comments