From ae599c45d40c03b0cf6160619d02db8e3cf6364e Mon Sep 17 00:00:00 2001
From: Aditya Ray <96347576+adi-ray@users.noreply.github.com>
Date: Thu, 2 Oct 2025 15:08:06 +0530
Subject: [PATCH 1/5] feat: Add auto-generated comments to reference MDX files
---
src/layouts/ReferenceItemLayout.astro | 5 ++---
src/scripts/builders/reference.ts | 8 +++++++-
2 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/src/layouts/ReferenceItemLayout.astro b/src/layouts/ReferenceItemLayout.astro
index 7611c3f3bc..df7086c6b5 100644
--- a/src/layouts/ReferenceItemLayout.astro
+++ b/src/layouts/ReferenceItemLayout.astro
@@ -283,13 +283,12 @@ const descriptionParts = description.split(
entry.data.file && entry.data.line &&(
- Notice any errors or typos?
Please let us know. Please feel free to edit
+ This page is generated from the comments in
{entry.data.file}
-
- and open a pull request!
+ . Feel free to edit it and submit a pull request!
)
diff --git a/src/scripts/builders/reference.ts b/src/scripts/builders/reference.ts
index cf724c9150..29537487d1 100644
--- a/src/scripts/builders/reference.ts
+++ b/src/scripts/builders/reference.ts
@@ -18,6 +18,7 @@ import { sanitizeName } from "../utils";
import path from "path";
import { load } from "cheerio";
import he from "he";
+import { p5Version } from "../../globals/p5-version";
/* Base path for the content directory */
const prefix = "./src/content/reference/en/";
@@ -290,14 +291,19 @@ const convertToMDX = async (
);
try {
+ // Add YAML comment to the frontmatter
+ const comment = `# This file was auto-generated. Please do not edit it manually!\n# To make changes, edit the comments in the corresponding source file:\n# https://github.com/processing/p5.js/blob/v${p5Version}/${doc.file}#L${doc.line}`;
+
// Convert the frontmatter to a string
const frontmatter = matter.stringify("", frontMatterArgs);
+ const frontmatterWithComment = frontmatter.replace('---\n', `---\n${comment}\n`);
+
// Stores the body of the MDX file
const markdownContent = `# ${sanitizeName(doc.name)}\n`;
// Convert the markdown content to MDX
const mdxContent = remark().use(remarkMDX).processSync(markdownContent);
// Return the full MDX file as a string
- return `${frontmatter}\n${mdxContent.toString()}`;
+ return `${frontmatterWithComment}\n${mdxContent.toString()}`;
} catch (err) {
console.error(`Error converting ${doc.name} to MDX: ${err}`);
return;
From 55c20a718c795912995905e78656970873c547f1 Mon Sep 17 00:00:00 2001
From: Aditya Ray <96347576+adi-ray@users.noreply.github.com>
Date: Thu, 2 Oct 2025 15:15:29 +0530
Subject: [PATCH 2/5] fix: correct file path formatting
---
src/scripts/builders/reference.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/scripts/builders/reference.ts b/src/scripts/builders/reference.ts
index 29537487d1..c02e3330a6 100644
--- a/src/scripts/builders/reference.ts
+++ b/src/scripts/builders/reference.ts
@@ -292,7 +292,7 @@ const convertToMDX = async (
try {
// Add YAML comment to the frontmatter
- const comment = `# This file was auto-generated. Please do not edit it manually!\n# To make changes, edit the comments in the corresponding source file:\n# https://github.com/processing/p5.js/blob/v${p5Version}/${doc.file}#L${doc.line}`;
+ const comment = `# This file was auto-generated. Please do not edit it manually!\n# To make changes, edit the comments in the corresponding source file:\n# https://github.com/processing/p5.js/blob/v${p5Version}/${doc.file.replace(/\\/g, '/')}#L${doc.line}`;
// Convert the frontmatter to a string
const frontmatter = matter.stringify("", frontMatterArgs);
From fc5cd25df6aef2bda7b557a319b3110cd20e1465 Mon Sep 17 00:00:00 2001
From: Aditya Ray <96347576+adi-ray@users.noreply.github.com>
Date: Fri, 3 Oct 2025 20:32:58 +0530
Subject: [PATCH 3/5] Update phrasing to keep original text
---
src/layouts/ReferenceItemLayout.astro | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/layouts/ReferenceItemLayout.astro b/src/layouts/ReferenceItemLayout.astro
index df7086c6b5..60d7046f9f 100644
--- a/src/layouts/ReferenceItemLayout.astro
+++ b/src/layouts/ReferenceItemLayout.astro
@@ -288,7 +288,7 @@ const descriptionParts = description.split(
href={`https://github.com/processing/p5.js/blob/v${p5Version}/${entry.data.file}#L${entry.data.line}`}
>
{entry.data.file}
- . Feel free to edit it and submit a pull request!
+ . Please feel free to edit it and submit a pull request!
)
From 6a5139eddb55cfcf907ddea24611bf2b01e295f1 Mon Sep 17 00:00:00 2001
From: Aditya Ray <96347576+adi-ray@users.noreply.github.com>
Date: Sat, 4 Oct 2025 00:49:01 +0530
Subject: [PATCH 4/5] fix: file path separators in MDX
---
src/scripts/builders/reference.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/scripts/builders/reference.ts b/src/scripts/builders/reference.ts
index c02e3330a6..5d785ee9a1 100644
--- a/src/scripts/builders/reference.ts
+++ b/src/scripts/builders/reference.ts
@@ -253,7 +253,7 @@ const convertToMDX = async (
title: sanitizeName(doc.name),
module: doc.module,
submodule: doc.submodule ?? "",
- file: doc.file.replace(/.*p5\.js\/(.*)/, "$1"),
+ file: doc.file.replace(/.*p5\.js\/(.*)/, "$1").replace(/\\/g, '/'),
description: doc.description ?? "",
line: doc.line,
deprecated: doc.deprecated,
From 5fc82f87a3d065d989000a5fd4b08b770e9f5e39 Mon Sep 17 00:00:00 2001
From: Aditya Ray <96347576+adi-ray@users.noreply.github.com>
Date: Sat, 4 Oct 2025 02:08:23 +0530
Subject: [PATCH 5/5] chore: Add auto-generated comments
---
.../reference/en/p5.Amplitude/getLevel.mdx | 3 +
.../reference/en/p5.Amplitude/setInput.mdx | 3 +
.../reference/en/p5.Amplitude/smooth.mdx | 3 +
.../en/p5.Amplitude/toggleNormalize.mdx | 3 +
src/content/reference/en/p5.AudioIn/amp.mdx | 3 +
.../reference/en/p5.AudioIn/amplitude.mdx | 3 +
.../reference/en/p5.AudioIn/connect.mdx | 3 +
.../reference/en/p5.AudioIn/currentSource.mdx | 3 +
.../reference/en/p5.AudioIn/disconnect.mdx | 3 +
.../reference/en/p5.AudioIn/enabled.mdx | 3 +
.../reference/en/p5.AudioIn/getLevel.mdx | 3 +
.../reference/en/p5.AudioIn/getSources.mdx | 3 +
src/content/reference/en/p5.AudioIn/input.mdx | 3 +
.../reference/en/p5.AudioIn/mediaStream.mdx | 3 +
.../reference/en/p5.AudioIn/output.mdx | 3 +
.../reference/en/p5.AudioIn/setSource.mdx | 3 +
src/content/reference/en/p5.AudioIn/start.mdx | 3 +
src/content/reference/en/p5.AudioIn/stop.mdx | 3 +
.../reference/en/p5.AudioIn/stream.mdx | 3 +
.../reference/en/p5.AudioVoice/connect.mdx | 3 +
.../reference/en/p5.AudioVoice/disconnect.mdx | 3 +
src/content/reference/en/p5.Camera/camera.mdx | 3 +
.../reference/en/p5.Camera/centerX.mdx | 3 +
.../reference/en/p5.Camera/centerY.mdx | 3 +
.../reference/en/p5.Camera/centerZ.mdx | 3 +
src/content/reference/en/p5.Camera/eyeX.mdx | 3 +
src/content/reference/en/p5.Camera/eyeY.mdx | 3 +
src/content/reference/en/p5.Camera/eyeZ.mdx | 3 +
.../reference/en/p5.Camera/frustum.mdx | 3 +
src/content/reference/en/p5.Camera/lookAt.mdx | 3 +
src/content/reference/en/p5.Camera/move.mdx | 3 +
src/content/reference/en/p5.Camera/ortho.mdx | 3 +
src/content/reference/en/p5.Camera/pan.mdx | 3 +
.../reference/en/p5.Camera/perspective.mdx | 3 +
src/content/reference/en/p5.Camera/roll.mdx | 3 +
src/content/reference/en/p5.Camera/set.mdx | 3 +
.../reference/en/p5.Camera/setPosition.mdx | 3 +
src/content/reference/en/p5.Camera/slerp.mdx | 3 +
src/content/reference/en/p5.Camera/tilt.mdx | 3 +
src/content/reference/en/p5.Camera/upX.mdx | 3 +
src/content/reference/en/p5.Camera/upY.mdx | 3 +
src/content/reference/en/p5.Camera/upZ.mdx | 3 +
.../reference/en/p5.Color/setAlpha.mdx | 3 +
src/content/reference/en/p5.Color/setBlue.mdx | 3 +
.../reference/en/p5.Color/setGreen.mdx | 3 +
src/content/reference/en/p5.Color/setRed.mdx | 3 +
.../reference/en/p5.Color/toString.mdx | 3 +
.../reference/en/p5.Compressor/attack.mdx | 3 +
.../reference/en/p5.Compressor/compressor.mdx | 3 +
.../reference/en/p5.Compressor/knee.mdx | 3 +
.../reference/en/p5.Compressor/process.mdx | 3 +
.../reference/en/p5.Compressor/ratio.mdx | 3 +
.../reference/en/p5.Compressor/reduction.mdx | 3 +
.../reference/en/p5.Compressor/release.mdx | 3 +
.../reference/en/p5.Compressor/set.mdx | 3 +
.../reference/en/p5.Compressor/threshold.mdx | 3 +
.../reference/en/p5.Convolver/addImpulse.mdx | 3 +
.../en/p5.Convolver/convolverNode.mdx | 3 +
.../reference/en/p5.Convolver/impulses.mdx | 3 +
.../reference/en/p5.Convolver/process.mdx | 3 +
.../en/p5.Convolver/resetImpulse.mdx | 3 +
.../en/p5.Convolver/toggleImpulse.mdx | 3 +
src/content/reference/en/p5.Delay/amp.mdx | 3 +
src/content/reference/en/p5.Delay/connect.mdx | 3 +
.../reference/en/p5.Delay/delayTime.mdx | 3 +
.../reference/en/p5.Delay/disconnect.mdx | 3 +
.../reference/en/p5.Delay/feedback.mdx | 3 +
src/content/reference/en/p5.Delay/filter.mdx | 3 +
.../reference/en/p5.Delay/leftDelay.mdx | 3 +
src/content/reference/en/p5.Delay/process.mdx | 3 +
.../reference/en/p5.Delay/rightDelay.mdx | 3 +
src/content/reference/en/p5.Delay/setType.mdx | 3 +
.../en/p5.Distortion/WaveShaperNode.mdx | 3 +
.../reference/en/p5.Distortion/getAmount.mdx | 3 +
.../en/p5.Distortion/getOversample.mdx | 3 +
.../reference/en/p5.Distortion/process.mdx | 3 +
.../reference/en/p5.Distortion/set.mdx | 3 +
src/content/reference/en/p5.EQ/bands.mdx | 3 +
src/content/reference/en/p5.EQ/process.mdx | 3 +
src/content/reference/en/p5.Effect/amp.mdx | 3 +
src/content/reference/en/p5.Effect/chain.mdx | 3 +
.../reference/en/p5.Effect/connect.mdx | 3 +
.../reference/en/p5.Effect/disconnect.mdx | 3 +
src/content/reference/en/p5.Effect/drywet.mdx | 3 +
.../reference/en/p5.Element/addClass.mdx | 3 +
.../reference/en/p5.Element/attribute.mdx | 3 +
.../reference/en/p5.Element/center.mdx | 3 +
src/content/reference/en/p5.Element/child.mdx | 3 +
src/content/reference/en/p5.Element/class.mdx | 3 +
.../reference/en/p5.Element/doubleClicked.mdx | 3 +
.../reference/en/p5.Element/dragLeave.mdx | 3 +
.../reference/en/p5.Element/dragOver.mdx | 3 +
.../reference/en/p5.Element/draggable.mdx | 3 +
src/content/reference/en/p5.Element/drop.mdx | 3 +
src/content/reference/en/p5.Element/elt.mdx | 3 +
.../reference/en/p5.Element/hasClass.mdx | 3 +
.../reference/en/p5.Element/height.mdx | 3 +
src/content/reference/en/p5.Element/hide.mdx | 3 +
src/content/reference/en/p5.Element/html.mdx | 3 +
src/content/reference/en/p5.Element/id.mdx | 3 +
.../reference/en/p5.Element/mouseClicked.mdx | 3 +
.../reference/en/p5.Element/mouseMoved.mdx | 3 +
.../reference/en/p5.Element/mouseOut.mdx | 3 +
.../reference/en/p5.Element/mouseOver.mdx | 3 +
.../reference/en/p5.Element/mousePressed.mdx | 3 +
.../reference/en/p5.Element/mouseReleased.mdx | 3 +
.../reference/en/p5.Element/mouseWheel.mdx | 3 +
.../reference/en/p5.Element/parent.mdx | 3 +
.../reference/en/p5.Element/position.mdx | 3 +
.../reference/en/p5.Element/remove.mdx | 3 +
.../en/p5.Element/removeAttribute.mdx | 3 +
.../reference/en/p5.Element/removeClass.mdx | 3 +
src/content/reference/en/p5.Element/show.mdx | 3 +
src/content/reference/en/p5.Element/size.mdx | 3 +
src/content/reference/en/p5.Element/style.mdx | 3 +
.../reference/en/p5.Element/toggleClass.mdx | 3 +
.../reference/en/p5.Element/touchEnded.mdx | 3 +
.../reference/en/p5.Element/touchMoved.mdx | 3 +
.../reference/en/p5.Element/touchStarted.mdx | 3 +
src/content/reference/en/p5.Element/value.mdx | 3 +
src/content/reference/en/p5.Element/width.mdx | 3 +
src/content/reference/en/p5.Envelope/add.mdx | 3 +
.../reference/en/p5.Envelope/attackLevel.mdx | 3 +
.../reference/en/p5.Envelope/attackTime.mdx | 3 +
.../reference/en/p5.Envelope/decayLevel.mdx | 3 +
.../reference/en/p5.Envelope/decayTime.mdx | 3 +
src/content/reference/en/p5.Envelope/mult.mdx | 3 +
src/content/reference/en/p5.Envelope/play.mdx | 3 +
src/content/reference/en/p5.Envelope/ramp.mdx | 3 +
.../reference/en/p5.Envelope/releaseLevel.mdx | 3 +
.../reference/en/p5.Envelope/releaseTime.mdx | 3 +
.../reference/en/p5.Envelope/scale.mdx | 3 +
src/content/reference/en/p5.Envelope/set.mdx | 3 +
.../reference/en/p5.Envelope/setADSR.mdx | 3 +
.../reference/en/p5.Envelope/setExp.mdx | 3 +
.../reference/en/p5.Envelope/setInput.mdx | 3 +
.../reference/en/p5.Envelope/setRange.mdx | 3 +
.../en/p5.Envelope/triggerAttack.mdx | 3 +
.../en/p5.Envelope/triggerRelease.mdx | 3 +
src/content/reference/en/p5.FFT/analyze.mdx | 3 +
.../reference/en/p5.FFT/getCentroid.mdx | 3 +
src/content/reference/en/p5.FFT/getEnergy.mdx | 3 +
.../reference/en/p5.FFT/getOctaveBands.mdx | 3 +
.../reference/en/p5.FFT/linAverages.mdx | 3 +
.../reference/en/p5.FFT/logAverages.mdx | 3 +
src/content/reference/en/p5.FFT/setInput.mdx | 3 +
src/content/reference/en/p5.FFT/smooth.mdx | 3 +
src/content/reference/en/p5.FFT/waveform.mdx | 3 +
src/content/reference/en/p5.File/data.mdx | 3 +
src/content/reference/en/p5.File/file.mdx | 3 +
src/content/reference/en/p5.File/name.mdx | 3 +
src/content/reference/en/p5.File/size.mdx | 3 +
src/content/reference/en/p5.File/subtype.mdx | 3 +
src/content/reference/en/p5.File/type.mdx | 3 +
.../reference/en/p5.Filter/biquadFilter.mdx | 3 +
src/content/reference/en/p5.Filter/freq.mdx | 3 +
src/content/reference/en/p5.Filter/gain.mdx | 3 +
.../reference/en/p5.Filter/process.mdx | 3 +
src/content/reference/en/p5.Filter/res.mdx | 3 +
src/content/reference/en/p5.Filter/set.mdx | 3 +
.../reference/en/p5.Filter/setType.mdx | 3 +
src/content/reference/en/p5.Filter/toggle.mdx | 3 +
src/content/reference/en/p5.Font/font.mdx | 3 +
.../reference/en/p5.Font/textBounds.mdx | 3 +
.../reference/en/p5.Font/textToPoints.mdx | 3 +
.../reference/en/p5.Framebuffer/autoSized.mdx | 3 +
.../reference/en/p5.Framebuffer/begin.mdx | 3 +
.../reference/en/p5.Framebuffer/color.mdx | 3 +
.../en/p5.Framebuffer/createCamera.mdx | 3 +
.../reference/en/p5.Framebuffer/depth.mdx | 3 +
.../reference/en/p5.Framebuffer/draw.mdx | 3 +
.../reference/en/p5.Framebuffer/end.mdx | 3 +
.../reference/en/p5.Framebuffer/get.mdx | 3 +
.../en/p5.Framebuffer/loadPixels.mdx | 3 +
.../en/p5.Framebuffer/pixelDensity.mdx | 3 +
.../reference/en/p5.Framebuffer/pixels.mdx | 3 +
.../reference/en/p5.Framebuffer/remove.mdx | 3 +
.../reference/en/p5.Framebuffer/resize.mdx | 3 +
.../en/p5.Framebuffer/updatePixels.mdx | 3 +
src/content/reference/en/p5.Gain/amp.mdx | 3 +
src/content/reference/en/p5.Gain/connect.mdx | 3 +
.../reference/en/p5.Gain/disconnect.mdx | 3 +
src/content/reference/en/p5.Gain/setInput.mdx | 3 +
.../en/p5.Geometry/calculateBoundingBox.mdx | 3 +
.../reference/en/p5.Geometry/clearColors.mdx | 3 +
.../reference/en/p5.Geometry/computeFaces.mdx | 3 +
.../en/p5.Geometry/computeNormals.mdx | 3 +
.../reference/en/p5.Geometry/faces.mdx | 3 +
.../reference/en/p5.Geometry/flipU.mdx | 3 +
.../reference/en/p5.Geometry/flipV.mdx | 3 +
.../reference/en/p5.Geometry/normalize.mdx | 3 +
.../reference/en/p5.Geometry/saveObj.mdx | 3 +
.../reference/en/p5.Geometry/saveStl.mdx | 3 +
src/content/reference/en/p5.Geometry/uvs.mdx | 3 +
.../en/p5.Geometry/vertexNormals.mdx | 3 +
.../reference/en/p5.Geometry/vertices.mdx | 3 +
.../en/p5.Graphics/createFramebuffer.mdx | 3 +
.../reference/en/p5.Graphics/remove.mdx | 3 +
.../reference/en/p5.Graphics/reset.mdx | 3 +
src/content/reference/en/p5.Image/blend.mdx | 3 +
src/content/reference/en/p5.Image/copy.mdx | 3 +
src/content/reference/en/p5.Image/delay.mdx | 3 +
src/content/reference/en/p5.Image/filter.mdx | 3 +
src/content/reference/en/p5.Image/get.mdx | 3 +
.../reference/en/p5.Image/getCurrentFrame.mdx | 3 +
src/content/reference/en/p5.Image/height.mdx | 3 +
.../reference/en/p5.Image/loadPixels.mdx | 3 +
src/content/reference/en/p5.Image/mask.mdx | 3 +
.../reference/en/p5.Image/numFrames.mdx | 3 +
src/content/reference/en/p5.Image/pause.mdx | 3 +
.../reference/en/p5.Image/pixelDensity.mdx | 3 +
src/content/reference/en/p5.Image/pixels.mdx | 3 +
src/content/reference/en/p5.Image/play.mdx | 3 +
src/content/reference/en/p5.Image/reset.mdx | 3 +
src/content/reference/en/p5.Image/resize.mdx | 3 +
src/content/reference/en/p5.Image/save.mdx | 3 +
src/content/reference/en/p5.Image/set.mdx | 3 +
.../reference/en/p5.Image/setFrame.mdx | 3 +
.../reference/en/p5.Image/updatePixels.mdx | 3 +
src/content/reference/en/p5.Image/width.mdx | 3 +
.../reference/en/p5.MediaElement/addCue.mdx | 3 +
.../reference/en/p5.MediaElement/autoplay.mdx | 3 +
.../en/p5.MediaElement/clearCues.mdx | 3 +
.../reference/en/p5.MediaElement/connect.mdx | 3 +
.../en/p5.MediaElement/disconnect.mdx | 3 +
.../reference/en/p5.MediaElement/duration.mdx | 3 +
.../en/p5.MediaElement/hideControls.mdx | 3 +
.../reference/en/p5.MediaElement/loop.mdx | 3 +
.../reference/en/p5.MediaElement/noLoop.mdx | 3 +
.../reference/en/p5.MediaElement/onended.mdx | 3 +
.../reference/en/p5.MediaElement/pause.mdx | 3 +
.../reference/en/p5.MediaElement/play.mdx | 3 +
.../en/p5.MediaElement/removeCue.mdx | 3 +
.../en/p5.MediaElement/showControls.mdx | 3 +
.../reference/en/p5.MediaElement/speed.mdx | 3 +
.../reference/en/p5.MediaElement/src.mdx | 3 +
.../reference/en/p5.MediaElement/stop.mdx | 3 +
.../reference/en/p5.MediaElement/time.mdx | 3 +
.../reference/en/p5.MediaElement/volume.mdx | 3 +
src/content/reference/en/p5.MonoSynth/amp.mdx | 3 +
.../reference/en/p5.MonoSynth/attack.mdx | 3 +
.../reference/en/p5.MonoSynth/connect.mdx | 3 +
.../reference/en/p5.MonoSynth/decay.mdx | 3 +
.../reference/en/p5.MonoSynth/disconnect.mdx | 3 +
.../reference/en/p5.MonoSynth/dispose.mdx | 3 +
.../reference/en/p5.MonoSynth/play.mdx | 3 +
.../reference/en/p5.MonoSynth/release.mdx | 3 +
.../reference/en/p5.MonoSynth/setADSR.mdx | 3 +
.../reference/en/p5.MonoSynth/sustain.mdx | 3 +
.../en/p5.MonoSynth/triggerAttack.mdx | 3 +
.../en/p5.MonoSynth/triggerRelease.mdx | 3 +
src/content/reference/en/p5.Noise/setType.mdx | 3 +
.../reference/en/p5.NumberDict/add.mdx | 3 +
.../reference/en/p5.NumberDict/div.mdx | 3 +
.../reference/en/p5.NumberDict/maxKey.mdx | 3 +
.../reference/en/p5.NumberDict/maxValue.mdx | 3 +
.../reference/en/p5.NumberDict/minKey.mdx | 3 +
.../reference/en/p5.NumberDict/minValue.mdx | 3 +
.../reference/en/p5.NumberDict/mult.mdx | 3 +
.../reference/en/p5.NumberDict/sub.mdx | 3 +
.../reference/en/p5.Oscillator/add.mdx | 3 +
.../reference/en/p5.Oscillator/amp.mdx | 3 +
.../reference/en/p5.Oscillator/connect.mdx | 3 +
.../reference/en/p5.Oscillator/disconnect.mdx | 3 +
.../reference/en/p5.Oscillator/freq.mdx | 3 +
.../reference/en/p5.Oscillator/getAmp.mdx | 3 +
.../reference/en/p5.Oscillator/getFreq.mdx | 3 +
.../reference/en/p5.Oscillator/getPan.mdx | 3 +
.../reference/en/p5.Oscillator/getType.mdx | 3 +
.../reference/en/p5.Oscillator/mult.mdx | 3 +
.../reference/en/p5.Oscillator/pan.mdx | 3 +
.../reference/en/p5.Oscillator/phase.mdx | 3 +
.../reference/en/p5.Oscillator/scale.mdx | 3 +
.../reference/en/p5.Oscillator/setType.mdx | 3 +
.../reference/en/p5.Oscillator/start.mdx | 3 +
.../reference/en/p5.Oscillator/stop.mdx | 3 +
.../reference/en/p5.Panner3D/maxDist.mdx | 3 +
.../reference/en/p5.Panner3D/orient.mdx | 3 +
.../reference/en/p5.Panner3D/orientX.mdx | 3 +
.../reference/en/p5.Panner3D/orientY.mdx | 3 +
.../reference/en/p5.Panner3D/orientZ.mdx | 3 +
.../reference/en/p5.Panner3D/panner.mdx | 3 +
.../reference/en/p5.Panner3D/positionX.mdx | 3 +
.../reference/en/p5.Panner3D/positionY.mdx | 3 +
.../reference/en/p5.Panner3D/positionZ.mdx | 3 +
.../reference/en/p5.Panner3D/process.mdx | 3 +
.../reference/en/p5.Panner3D/rollof.mdx | 3 +
src/content/reference/en/p5.Panner3D/set.mdx | 3 +
.../reference/en/p5.Panner3D/setFalloff.mdx | 3 +
.../reference/en/p5.Part/addPhrase.mdx | 3 +
src/content/reference/en/p5.Part/getBPM.mdx | 3 +
.../reference/en/p5.Part/getPhrase.mdx | 3 +
src/content/reference/en/p5.Part/loop.mdx | 3 +
src/content/reference/en/p5.Part/noLoop.mdx | 3 +
src/content/reference/en/p5.Part/onStep.mdx | 3 +
src/content/reference/en/p5.Part/pause.mdx | 3 +
.../reference/en/p5.Part/removePhrase.mdx | 3 +
.../reference/en/p5.Part/replaceSequence.mdx | 3 +
src/content/reference/en/p5.Part/setBPM.mdx | 3 +
src/content/reference/en/p5.Part/start.mdx | 3 +
src/content/reference/en/p5.Part/stop.mdx | 3 +
.../reference/en/p5.PeakDetect/isDetected.mdx | 3 +
.../reference/en/p5.PeakDetect/onPeak.mdx | 3 +
.../reference/en/p5.PeakDetect/update.mdx | 3 +
.../reference/en/p5.Phrase/sequence.mdx | 3 +
.../reference/en/p5.PolySynth/AudioVoice.mdx | 3 +
.../reference/en/p5.PolySynth/connect.mdx | 3 +
.../reference/en/p5.PolySynth/disconnect.mdx | 3 +
.../reference/en/p5.PolySynth/dispose.mdx | 3 +
.../reference/en/p5.PolySynth/noteADSR.mdx | 3 +
.../reference/en/p5.PolySynth/noteAttack.mdx | 3 +
.../reference/en/p5.PolySynth/noteRelease.mdx | 3 +
.../reference/en/p5.PolySynth/notes.mdx | 3 +
.../reference/en/p5.PolySynth/play.mdx | 3 +
.../reference/en/p5.PolySynth/polyvalue.mdx | 3 +
.../reference/en/p5.PolySynth/setADSR.mdx | 3 +
.../reference/en/p5.PrintWriter/clear.mdx | 3 +
.../reference/en/p5.PrintWriter/close.mdx | 3 +
.../reference/en/p5.PrintWriter/print.mdx | 3 +
.../reference/en/p5.PrintWriter/write.mdx | 3 +
src/content/reference/en/p5.Pulse/width.mdx | 3 +
src/content/reference/en/p5.Reverb/amp.mdx | 3 +
.../reference/en/p5.Reverb/connect.mdx | 3 +
.../reference/en/p5.Reverb/disconnect.mdx | 3 +
.../reference/en/p5.Reverb/process.mdx | 3 +
src/content/reference/en/p5.Reverb/set.mdx | 3 +
src/content/reference/en/p5.Score/loop.mdx | 3 +
src/content/reference/en/p5.Score/noLoop.mdx | 3 +
src/content/reference/en/p5.Score/pause.mdx | 3 +
src/content/reference/en/p5.Score/setBPM.mdx | 3 +
src/content/reference/en/p5.Score/start.mdx | 3 +
src/content/reference/en/p5.Score/stop.mdx | 3 +
.../reference/en/p5.Shader/copyToContext.mdx | 3 +
.../reference/en/p5.Shader/inspectHooks.mdx | 3 +
src/content/reference/en/p5.Shader/modify.mdx | 3 +
.../reference/en/p5.Shader/setUniform.mdx | 3 +
.../reference/en/p5.SoundFile/addCue.mdx | 3 +
.../reference/en/p5.SoundFile/channels.mdx | 3 +
.../reference/en/p5.SoundFile/clearCues.mdx | 3 +
.../reference/en/p5.SoundFile/connect.mdx | 3 +
.../reference/en/p5.SoundFile/currentTime.mdx | 3 +
.../reference/en/p5.SoundFile/disconnect.mdx | 3 +
.../reference/en/p5.SoundFile/duration.mdx | 3 +
.../reference/en/p5.SoundFile/frames.mdx | 3 +
.../reference/en/p5.SoundFile/getBlob.mdx | 3 +
.../reference/en/p5.SoundFile/getPan.mdx | 3 +
.../reference/en/p5.SoundFile/getPeaks.mdx | 3 +
.../reference/en/p5.SoundFile/isLoaded.mdx | 3 +
.../reference/en/p5.SoundFile/isLooping.mdx | 3 +
.../reference/en/p5.SoundFile/isPaused.mdx | 3 +
.../reference/en/p5.SoundFile/isPlaying.mdx | 3 +
.../reference/en/p5.SoundFile/jump.mdx | 3 +
.../reference/en/p5.SoundFile/loop.mdx | 3 +
.../reference/en/p5.SoundFile/onended.mdx | 3 +
src/content/reference/en/p5.SoundFile/pan.mdx | 3 +
.../reference/en/p5.SoundFile/pause.mdx | 3 +
.../reference/en/p5.SoundFile/play.mdx | 3 +
.../reference/en/p5.SoundFile/playMode.mdx | 3 +
.../reference/en/p5.SoundFile/rate.mdx | 3 +
.../reference/en/p5.SoundFile/removeCue.mdx | 3 +
.../en/p5.SoundFile/reverseBuffer.mdx | 3 +
.../reference/en/p5.SoundFile/sampleRate.mdx | 3 +
.../reference/en/p5.SoundFile/save.mdx | 3 +
.../reference/en/p5.SoundFile/setBuffer.mdx | 3 +
.../reference/en/p5.SoundFile/setLoop.mdx | 3 +
.../reference/en/p5.SoundFile/setPath.mdx | 3 +
.../reference/en/p5.SoundFile/setVolume.mdx | 3 +
.../reference/en/p5.SoundFile/stop.mdx | 3 +
src/content/reference/en/p5.SoundLoop/bpm.mdx | 3 +
.../reference/en/p5.SoundLoop/interval.mdx | 3 +
.../reference/en/p5.SoundLoop/iterations.mdx | 3 +
.../en/p5.SoundLoop/maxIterations.mdx | 3 +
.../en/p5.SoundLoop/musicalTimeMode.mdx | 3 +
.../reference/en/p5.SoundLoop/pause.mdx | 3 +
.../reference/en/p5.SoundLoop/start.mdx | 3 +
.../reference/en/p5.SoundLoop/stop.mdx | 3 +
.../reference/en/p5.SoundLoop/syncedStart.mdx | 3 +
.../en/p5.SoundLoop/timeSignature.mdx | 3 +
.../reference/en/p5.SoundRecorder/record.mdx | 3 +
.../en/p5.SoundRecorder/setInput.mdx | 3 +
.../reference/en/p5.SoundRecorder/stop.mdx | 3 +
.../reference/en/p5.Table/addColumn.mdx | 3 +
src/content/reference/en/p5.Table/addRow.mdx | 3 +
.../reference/en/p5.Table/clearRows.mdx | 3 +
src/content/reference/en/p5.Table/columns.mdx | 3 +
src/content/reference/en/p5.Table/findRow.mdx | 3 +
.../reference/en/p5.Table/findRows.mdx | 3 +
src/content/reference/en/p5.Table/get.mdx | 3 +
.../reference/en/p5.Table/getArray.mdx | 3 +
.../reference/en/p5.Table/getColumn.mdx | 3 +
.../reference/en/p5.Table/getColumnCount.mdx | 3 +
src/content/reference/en/p5.Table/getNum.mdx | 3 +
.../reference/en/p5.Table/getObject.mdx | 3 +
src/content/reference/en/p5.Table/getRow.mdx | 3 +
.../reference/en/p5.Table/getRowCount.mdx | 3 +
src/content/reference/en/p5.Table/getRows.mdx | 3 +
.../reference/en/p5.Table/getString.mdx | 3 +
.../reference/en/p5.Table/matchRow.mdx | 3 +
.../reference/en/p5.Table/matchRows.mdx | 3 +
.../reference/en/p5.Table/removeColumn.mdx | 3 +
.../reference/en/p5.Table/removeRow.mdx | 3 +
.../reference/en/p5.Table/removeTokens.mdx | 3 +
src/content/reference/en/p5.Table/rows.mdx | 3 +
src/content/reference/en/p5.Table/set.mdx | 3 +
src/content/reference/en/p5.Table/setNum.mdx | 3 +
.../reference/en/p5.Table/setString.mdx | 3 +
src/content/reference/en/p5.Table/trim.mdx | 3 +
src/content/reference/en/p5.TableRow/get.mdx | 3 +
.../reference/en/p5.TableRow/getNum.mdx | 3 +
.../reference/en/p5.TableRow/getString.mdx | 3 +
src/content/reference/en/p5.TableRow/set.mdx | 3 +
.../reference/en/p5.TableRow/setNum.mdx | 3 +
.../reference/en/p5.TableRow/setString.mdx | 3 +
.../reference/en/p5.TypedDict/clear.mdx | 3 +
.../reference/en/p5.TypedDict/create.mdx | 3 +
src/content/reference/en/p5.TypedDict/get.mdx | 3 +
.../reference/en/p5.TypedDict/hasKey.mdx | 3 +
.../reference/en/p5.TypedDict/print.mdx | 3 +
.../reference/en/p5.TypedDict/remove.mdx | 3 +
.../reference/en/p5.TypedDict/saveJSON.mdx | 3 +
.../reference/en/p5.TypedDict/saveTable.mdx | 3 +
src/content/reference/en/p5.TypedDict/set.mdx | 3 +
.../reference/en/p5.TypedDict/size.mdx | 3 +
src/content/reference/en/p5.Vector/add.mdx | 3 +
.../reference/en/p5.Vector/angleBetween.mdx | 3 +
src/content/reference/en/p5.Vector/array.mdx | 3 +
.../reference/en/p5.Vector/clampToZero.mdx | 3 +
src/content/reference/en/p5.Vector/copy.mdx | 3 +
src/content/reference/en/p5.Vector/cross.mdx | 3 +
src/content/reference/en/p5.Vector/dist.mdx | 3 +
src/content/reference/en/p5.Vector/div.mdx | 3 +
src/content/reference/en/p5.Vector/dot.mdx | 3 +
src/content/reference/en/p5.Vector/equals.mdx | 3 +
.../reference/en/p5.Vector/fromAngle.mdx | 3 +
.../reference/en/p5.Vector/fromAngles.mdx | 3 +
.../reference/en/p5.Vector/heading.mdx | 3 +
src/content/reference/en/p5.Vector/lerp.mdx | 3 +
src/content/reference/en/p5.Vector/limit.mdx | 3 +
src/content/reference/en/p5.Vector/mag.mdx | 3 +
src/content/reference/en/p5.Vector/magSq.mdx | 3 +
src/content/reference/en/p5.Vector/mult.mdx | 3 +
.../reference/en/p5.Vector/normalize.mdx | 3 +
.../reference/en/p5.Vector/random2D.mdx | 3 +
.../reference/en/p5.Vector/random3D.mdx | 3 +
.../reference/en/p5.Vector/reflect.mdx | 3 +
src/content/reference/en/p5.Vector/rem.mdx | 3 +
src/content/reference/en/p5.Vector/rotate.mdx | 3 +
src/content/reference/en/p5.Vector/set.mdx | 3 +
.../reference/en/p5.Vector/setHeading.mdx | 3 +
src/content/reference/en/p5.Vector/setMag.mdx | 3 +
src/content/reference/en/p5.Vector/slerp.mdx | 3 +
src/content/reference/en/p5.Vector/sub.mdx | 3 +
.../reference/en/p5.Vector/toString.mdx | 3 +
src/content/reference/en/p5.Vector/x.mdx | 3 +
src/content/reference/en/p5.Vector/y.mdx | 3 +
src/content/reference/en/p5.Vector/z.mdx | 3 +
src/content/reference/en/p5.XML/addChild.mdx | 3 +
.../reference/en/p5.XML/getAttributeCount.mdx | 3 +
src/content/reference/en/p5.XML/getChild.mdx | 3 +
.../reference/en/p5.XML/getChildren.mdx | 3 +
.../reference/en/p5.XML/getContent.mdx | 3 +
src/content/reference/en/p5.XML/getName.mdx | 3 +
src/content/reference/en/p5.XML/getNum.mdx | 3 +
src/content/reference/en/p5.XML/getParent.mdx | 3 +
src/content/reference/en/p5.XML/getString.mdx | 3 +
.../reference/en/p5.XML/hasAttribute.mdx | 3 +
.../reference/en/p5.XML/hasChildren.mdx | 3 +
.../reference/en/p5.XML/listAttributes.mdx | 3 +
.../reference/en/p5.XML/listChildren.mdx | 3 +
.../reference/en/p5.XML/removeChild.mdx | 3 +
src/content/reference/en/p5.XML/serialize.mdx | 3 +
.../reference/en/p5.XML/setAttribute.mdx | 3 +
.../reference/en/p5.XML/setContent.mdx | 3 +
src/content/reference/en/p5.XML/setName.mdx | 3 +
.../reference/en/p5.sound/p5.Amplitude.mdx | 11 ++-
.../reference/en/p5.sound/p5.AudioIn.mdx | 33 ++++----
.../reference/en/p5.sound/p5.AudioVoice.mdx | 7 +-
.../reference/en/p5.sound/p5.BandPass.mdx | 3 +
.../reference/en/p5.sound/p5.Compressor.mdx | 21 ++---
.../reference/en/p5.sound/p5.Convolver.mdx | 15 ++--
.../reference/en/p5.sound/p5.Delay.mdx | 23 +++---
.../reference/en/p5.sound/p5.Distortion.mdx | 13 ++--
src/content/reference/en/p5.sound/p5.EQ.mdx | 7 +-
.../reference/en/p5.sound/p5.Effect.mdx | 13 ++--
.../reference/en/p5.sound/p5.Envelope.mdx | 39 +++++-----
src/content/reference/en/p5.sound/p5.FFT.mdx | 21 ++---
.../reference/en/p5.sound/p5.Filter.mdx | 19 +++--
src/content/reference/en/p5.sound/p5.Gain.mdx | 11 ++-
.../reference/en/p5.sound/p5.HighPass.mdx | 3 +
.../reference/en/p5.sound/p5.LowPass.mdx | 3 +
.../reference/en/p5.sound/p5.MonoSynth.mdx | 27 ++++---
.../reference/en/p5.sound/p5.Noise.mdx | 5 +-
.../reference/en/p5.sound/p5.OnsetDetect.mdx | 3 +
.../reference/en/p5.sound/p5.Oscillator.mdx | 35 +++++----
.../reference/en/p5.sound/p5.Panner3D.mdx | 29 +++----
src/content/reference/en/p5.sound/p5.Part.mdx | 27 ++++---
.../reference/en/p5.sound/p5.PeakDetect.mdx | 7 +-
.../reference/en/p5.sound/p5.Phrase.mdx | 5 +-
.../reference/en/p5.sound/p5.PolySynth.mdx | 25 +++---
.../reference/en/p5.sound/p5.Pulse.mdx | 5 +-
.../reference/en/p5.sound/p5.Reverb.mdx | 13 ++--
.../reference/en/p5.sound/p5.SawOsc.mdx | 3 +
.../reference/en/p5.sound/p5.Score.mdx | 15 ++--
.../reference/en/p5.sound/p5.SinOsc.mdx | 3 +
.../reference/en/p5.sound/p5.SoundFile.mdx | 67 ++++++++--------
.../reference/en/p5.sound/p5.SoundLoop.mdx | 23 +++---
.../en/p5.sound/p5.SoundRecorder.mdx | 9 ++-
.../reference/en/p5.sound/p5.SqrOsc.mdx | 3 +
.../reference/en/p5.sound/p5.TriOsc.mdx | 3 +
src/content/reference/en/p5/abs.mdx | 3 +
src/content/reference/en/p5/accelerationX.mdx | 3 +
src/content/reference/en/p5/accelerationY.mdx | 3 +
src/content/reference/en/p5/accelerationZ.mdx | 3 +
src/content/reference/en/p5/acos.mdx | 3 +
src/content/reference/en/p5/alpha.mdx | 3 +
src/content/reference/en/p5/ambientLight.mdx | 3 +
.../reference/en/p5/ambientMaterial.mdx | 3 +
src/content/reference/en/p5/angleMode.mdx | 3 +
src/content/reference/en/p5/append.mdx | 3 +
src/content/reference/en/p5/applyMatrix.mdx | 3 +
src/content/reference/en/p5/arc.mdx | 3 +
src/content/reference/en/p5/arrayCopy.mdx | 3 +
src/content/reference/en/p5/asin.mdx | 3 +
src/content/reference/en/p5/atan.mdx | 3 +
src/content/reference/en/p5/atan2.mdx | 3 +
src/content/reference/en/p5/background.mdx | 3 +
.../reference/en/p5/baseColorShader.mdx | 3 +
.../reference/en/p5/baseMaterialShader.mdx | 3 +
.../reference/en/p5/baseNormalShader.mdx | 3 +
.../reference/en/p5/baseStrokeShader.mdx | 3 +
src/content/reference/en/p5/beginClip.mdx | 3 +
src/content/reference/en/p5/beginContour.mdx | 3 +
src/content/reference/en/p5/beginGeometry.mdx | 3 +
src/content/reference/en/p5/beginShape.mdx | 3 +
src/content/reference/en/p5/bezier.mdx | 3 +
src/content/reference/en/p5/bezierDetail.mdx | 3 +
src/content/reference/en/p5/bezierPoint.mdx | 3 +
src/content/reference/en/p5/bezierTangent.mdx | 3 +
src/content/reference/en/p5/bezierVertex.mdx | 3 +
src/content/reference/en/p5/blend.mdx | 3 +
src/content/reference/en/p5/blendMode.mdx | 3 +
src/content/reference/en/p5/blue.mdx | 3 +
src/content/reference/en/p5/boolean.mdx | 3 +
src/content/reference/en/p5/box.mdx | 3 +
src/content/reference/en/p5/brightness.mdx | 3 +
src/content/reference/en/p5/buildGeometry.mdx | 3 +
src/content/reference/en/p5/byte.mdx | 3 +
src/content/reference/en/p5/camera.mdx | 3 +
src/content/reference/en/p5/ceil.mdx | 3 +
src/content/reference/en/p5/changed.mdx | 3 +
src/content/reference/en/p5/char.mdx | 3 +
src/content/reference/en/p5/circle.mdx | 3 +
src/content/reference/en/p5/class.mdx | 3 +
src/content/reference/en/p5/clear.mdx | 3 +
src/content/reference/en/p5/clearDepth.mdx | 3 +
src/content/reference/en/p5/clearStorage.mdx | 3 +
src/content/reference/en/p5/clip.mdx | 3 +
src/content/reference/en/p5/color.mdx | 3 +
src/content/reference/en/p5/colorMode.mdx | 3 +
src/content/reference/en/p5/concat.mdx | 3 +
src/content/reference/en/p5/cone.mdx | 3 +
src/content/reference/en/p5/console.mdx | 3 +
src/content/reference/en/p5/constants/ADD.mdx | 3 +
src/content/reference/en/p5/constants/ALT.mdx | 3 +
.../reference/en/p5/constants/ARROW.mdx | 3 +
.../reference/en/p5/constants/AUTO.mdx | 3 +
.../reference/en/p5/constants/AXES.mdx | 3 +
.../reference/en/p5/constants/BACKSPACE.mdx | 3 +
.../reference/en/p5/constants/BASELINE.mdx | 3 +
.../reference/en/p5/constants/BEVEL.mdx | 3 +
.../reference/en/p5/constants/BEZIER.mdx | 3 +
.../reference/en/p5/constants/BLEND.mdx | 3 +
.../reference/en/p5/constants/BLUR.mdx | 3 +
.../reference/en/p5/constants/BOLD.mdx | 3 +
.../reference/en/p5/constants/BOLDITALIC.mdx | 3 +
.../reference/en/p5/constants/BOTTOM.mdx | 3 +
.../reference/en/p5/constants/BURN.mdx | 3 +
.../reference/en/p5/constants/CENTER.mdx | 3 +
.../reference/en/p5/constants/CHAR.mdx | 3 +
.../reference/en/p5/constants/CHORD.mdx | 3 +
.../reference/en/p5/constants/CLAMP.mdx | 3 +
.../reference/en/p5/constants/CLOSE.mdx | 3 +
.../reference/en/p5/constants/CONTAIN.mdx | 3 +
.../reference/en/p5/constants/CONTROL.mdx | 3 +
.../reference/en/p5/constants/CORNER.mdx | 3 +
.../reference/en/p5/constants/CORNERS.mdx | 3 +
.../reference/en/p5/constants/COVER.mdx | 3 +
.../reference/en/p5/constants/CROSS.mdx | 3 +
.../reference/en/p5/constants/CURVE.mdx | 3 +
.../reference/en/p5/constants/DARKEST.mdx | 3 +
.../reference/en/p5/constants/DEGREES.mdx | 3 +
.../reference/en/p5/constants/DELETE.mdx | 3 +
.../reference/en/p5/constants/DIFFERENCE.mdx | 3 +
.../reference/en/p5/constants/DILATE.mdx | 3 +
.../reference/en/p5/constants/DODGE.mdx | 3 +
.../reference/en/p5/constants/DOWN_ARROW.mdx | 3 +
.../reference/en/p5/constants/ENTER.mdx | 3 +
.../reference/en/p5/constants/ERODE.mdx | 3 +
.../reference/en/p5/constants/ESCAPE.mdx | 3 +
.../reference/en/p5/constants/EXCLUSION.mdx | 3 +
.../reference/en/p5/constants/FALLBACK.mdx | 3 +
.../reference/en/p5/constants/FILL.mdx | 3 +
.../reference/en/p5/constants/FLAT.mdx | 3 +
.../reference/en/p5/constants/FLOAT.mdx | 3 +
.../reference/en/p5/constants/GRAY.mdx | 3 +
.../reference/en/p5/constants/GRID.mdx | 3 +
.../reference/en/p5/constants/HALF_FLOAT.mdx | 3 +
.../reference/en/p5/constants/HALF_PI.mdx | 3 +
.../reference/en/p5/constants/HAND.mdx | 3 +
.../reference/en/p5/constants/HARD_LIGHT.mdx | 3 +
src/content/reference/en/p5/constants/HSB.mdx | 3 +
src/content/reference/en/p5/constants/HSL.mdx | 3 +
.../reference/en/p5/constants/IMAGE.mdx | 3 +
.../reference/en/p5/constants/IMMEDIATE.mdx | 3 +
.../reference/en/p5/constants/INVERT.mdx | 3 +
.../reference/en/p5/constants/ITALIC.mdx | 3 +
.../reference/en/p5/constants/LABEL.mdx | 3 +
.../reference/en/p5/constants/LANDSCAPE.mdx | 3 +
.../reference/en/p5/constants/LEFT.mdx | 3 +
.../reference/en/p5/constants/LEFT_ARROW.mdx | 3 +
.../reference/en/p5/constants/LIGHTEST.mdx | 3 +
.../reference/en/p5/constants/LINEAR.mdx | 3 +
.../reference/en/p5/constants/LINES.mdx | 3 +
.../reference/en/p5/constants/LINE_LOOP.mdx | 3 +
.../reference/en/p5/constants/LINE_STRIP.mdx | 3 +
.../reference/en/p5/constants/MIRROR.mdx | 3 +
.../reference/en/p5/constants/MITER.mdx | 3 +
.../reference/en/p5/constants/MOVE.mdx | 3 +
.../reference/en/p5/constants/MULTIPLY.mdx | 3 +
.../reference/en/p5/constants/NEAREST.mdx | 3 +
.../reference/en/p5/constants/NORMAL.mdx | 3 +
.../reference/en/p5/constants/OPAQUE.mdx | 3 +
.../reference/en/p5/constants/OPEN.mdx | 3 +
.../reference/en/p5/constants/OPTION.mdx | 3 +
.../reference/en/p5/constants/OVERLAY.mdx | 3 +
src/content/reference/en/p5/constants/P2D.mdx | 3 +
src/content/reference/en/p5/constants/PI.mdx | 3 +
src/content/reference/en/p5/constants/PIE.mdx | 3 +
.../reference/en/p5/constants/POINTS.mdx | 3 +
.../reference/en/p5/constants/PORTRAIT.mdx | 3 +
.../reference/en/p5/constants/POSTERIZE.mdx | 3 +
.../reference/en/p5/constants/PROJECT.mdx | 3 +
.../reference/en/p5/constants/QUADRATIC.mdx | 3 +
.../reference/en/p5/constants/QUADS.mdx | 3 +
.../reference/en/p5/constants/QUAD_STRIP.mdx | 3 +
.../reference/en/p5/constants/QUARTER_PI.mdx | 3 +
.../reference/en/p5/constants/RADIANS.mdx | 3 +
.../reference/en/p5/constants/RADIUS.mdx | 3 +
.../reference/en/p5/constants/REMOVE.mdx | 3 +
.../reference/en/p5/constants/REPEAT.mdx | 3 +
.../reference/en/p5/constants/REPLACE.mdx | 3 +
.../reference/en/p5/constants/RETURN.mdx | 3 +
src/content/reference/en/p5/constants/RGB.mdx | 3 +
.../reference/en/p5/constants/RGBA.mdx | 3 +
.../reference/en/p5/constants/RIGHT.mdx | 3 +
.../reference/en/p5/constants/RIGHT_ARROW.mdx | 3 +
.../reference/en/p5/constants/ROUND.mdx | 3 +
.../reference/en/p5/constants/SCREEN.mdx | 3 +
.../reference/en/p5/constants/SHIFT.mdx | 3 +
.../reference/en/p5/constants/SMOOTH.mdx | 3 +
.../reference/en/p5/constants/SOFT_LIGHT.mdx | 3 +
.../reference/en/p5/constants/SQUARE.mdx | 3 +
.../reference/en/p5/constants/STROKE.mdx | 3 +
.../reference/en/p5/constants/SUBTRACT.mdx | 3 +
src/content/reference/en/p5/constants/TAB.mdx | 3 +
src/content/reference/en/p5/constants/TAU.mdx | 3 +
.../reference/en/p5/constants/TESS.mdx | 3 +
.../reference/en/p5/constants/TEXT.mdx | 3 +
.../reference/en/p5/constants/TEXTURE.mdx | 3 +
.../reference/en/p5/constants/THRESHOLD.mdx | 3 +
src/content/reference/en/p5/constants/TOP.mdx | 3 +
.../reference/en/p5/constants/TRIANGLES.mdx | 3 +
.../en/p5/constants/TRIANGLE_FAN.mdx | 3 +
.../en/p5/constants/TRIANGLE_STRIP.mdx | 3 +
.../reference/en/p5/constants/TWO_PI.mdx | 3 +
.../en/p5/constants/UNSIGNED_BYTE.mdx | 3 +
.../en/p5/constants/UNSIGNED_INT.mdx | 3 +
.../reference/en/p5/constants/UP_ARROW.mdx | 3 +
.../reference/en/p5/constants/VERSION.mdx | 3 +
.../reference/en/p5/constants/WAIT.mdx | 3 +
.../reference/en/p5/constants/WEBGL.mdx | 3 +
.../reference/en/p5/constants/WEBGL2.mdx | 3 +
.../reference/en/p5/constants/WORD.mdx | 3 +
src/content/reference/en/p5/constrain.mdx | 3 +
src/content/reference/en/p5/copy.mdx | 3 +
src/content/reference/en/p5/cos.mdx | 3 +
src/content/reference/en/p5/createA.mdx | 3 +
src/content/reference/en/p5/createAudio.mdx | 3 +
src/content/reference/en/p5/createButton.mdx | 3 +
src/content/reference/en/p5/createCamera.mdx | 3 +
src/content/reference/en/p5/createCanvas.mdx | 3 +
src/content/reference/en/p5/createCapture.mdx | 3 +
.../reference/en/p5/createCheckbox.mdx | 3 +
.../reference/en/p5/createColorPicker.mdx | 3 +
.../reference/en/p5/createConvolver.mdx | 3 +
src/content/reference/en/p5/createDiv.mdx | 3 +
src/content/reference/en/p5/createElement.mdx | 3 +
.../reference/en/p5/createFileInput.mdx | 3 +
.../reference/en/p5/createFilterShader.mdx | 3 +
.../reference/en/p5/createFramebuffer.mdx | 3 +
.../reference/en/p5/createGraphics.mdx | 3 +
src/content/reference/en/p5/createImage.mdx | 3 +
src/content/reference/en/p5/createImg.mdx | 3 +
src/content/reference/en/p5/createInput.mdx | 3 +
src/content/reference/en/p5/createModel.mdx | 3 +
.../reference/en/p5/createNumberDict.mdx | 3 +
src/content/reference/en/p5/createP.mdx | 3 +
src/content/reference/en/p5/createRadio.mdx | 3 +
src/content/reference/en/p5/createSelect.mdx | 3 +
src/content/reference/en/p5/createShader.mdx | 3 +
src/content/reference/en/p5/createSlider.mdx | 3 +
src/content/reference/en/p5/createSpan.mdx | 3 +
.../reference/en/p5/createStringDict.mdx | 3 +
src/content/reference/en/p5/createVector.mdx | 3 +
src/content/reference/en/p5/createVideo.mdx | 3 +
src/content/reference/en/p5/createWriter.mdx | 3 +
src/content/reference/en/p5/cursor.mdx | 3 +
src/content/reference/en/p5/curve.mdx | 3 +
src/content/reference/en/p5/curveDetail.mdx | 3 +
src/content/reference/en/p5/curvePoint.mdx | 3 +
src/content/reference/en/p5/curveTangent.mdx | 3 +
.../reference/en/p5/curveTightness.mdx | 3 +
src/content/reference/en/p5/curveVertex.mdx | 3 +
src/content/reference/en/p5/cylinder.mdx | 3 +
src/content/reference/en/p5/day.mdx | 3 +
src/content/reference/en/p5/debugMode.mdx | 3 +
src/content/reference/en/p5/degrees.mdx | 3 +
src/content/reference/en/p5/deltaTime.mdx | 3 +
src/content/reference/en/p5/describe.mdx | 3 +
.../reference/en/p5/describeElement.mdx | 3 +
src/content/reference/en/p5/deviceMoved.mdx | 3 +
.../reference/en/p5/deviceOrientation.mdx | 3 +
src/content/reference/en/p5/deviceShaken.mdx | 3 +
src/content/reference/en/p5/deviceTurned.mdx | 3 +
.../reference/en/p5/directionalLight.mdx | 3 +
.../reference/en/p5/disableFriendlyErrors.mdx | 3 +
.../reference/en/p5/displayDensity.mdx | 3 +
src/content/reference/en/p5/displayHeight.mdx | 3 +
src/content/reference/en/p5/displayWidth.mdx | 3 +
src/content/reference/en/p5/dist.mdx | 3 +
src/content/reference/en/p5/doubleClicked.mdx | 3 +
src/content/reference/en/p5/draw.mdx | 3 +
.../reference/en/p5/drawingContext.mdx | 3 +
src/content/reference/en/p5/ellipse.mdx | 3 +
src/content/reference/en/p5/ellipseMode.mdx | 3 +
src/content/reference/en/p5/ellipsoid.mdx | 3 +
.../reference/en/p5/emissiveMaterial.mdx | 3 +
src/content/reference/en/p5/endClip.mdx | 3 +
src/content/reference/en/p5/endContour.mdx | 3 +
src/content/reference/en/p5/endGeometry.mdx | 3 +
src/content/reference/en/p5/endShape.mdx | 3 +
src/content/reference/en/p5/erase.mdx | 3 +
.../reference/en/p5/exitPointerLock.mdx | 3 +
src/content/reference/en/p5/exp.mdx | 3 +
src/content/reference/en/p5/fill.mdx | 3 +
src/content/reference/en/p5/filter.mdx | 3 +
src/content/reference/en/p5/float.mdx | 3 +
src/content/reference/en/p5/floor.mdx | 3 +
src/content/reference/en/p5/focused.mdx | 3 +
src/content/reference/en/p5/for.mdx | 3 +
src/content/reference/en/p5/fract.mdx | 3 +
src/content/reference/en/p5/frameCount.mdx | 3 +
src/content/reference/en/p5/frameRate.mdx | 3 +
src/content/reference/en/p5/freeGeometry.mdx | 3 +
src/content/reference/en/p5/freqToMidi.mdx | 3 +
src/content/reference/en/p5/frustum.mdx | 3 +
src/content/reference/en/p5/fullscreen.mdx | 3 +
src/content/reference/en/p5/function.mdx | 3 +
src/content/reference/en/p5/get.mdx | 3 +
.../reference/en/p5/getAudioContext.mdx | 3 +
src/content/reference/en/p5/getItem.mdx | 3 +
.../reference/en/p5/getOutputVolume.mdx | 3 +
.../reference/en/p5/getTargetFrameRate.mdx | 3 +
src/content/reference/en/p5/getURL.mdx | 3 +
src/content/reference/en/p5/getURLParams.mdx | 3 +
src/content/reference/en/p5/getURLPath.mdx | 3 +
src/content/reference/en/p5/green.mdx | 3 +
src/content/reference/en/p5/gridOutput.mdx | 3 +
src/content/reference/en/p5/height.mdx | 3 +
src/content/reference/en/p5/hex.mdx | 3 +
src/content/reference/en/p5/hour.mdx | 3 +
src/content/reference/en/p5/httpDo.mdx | 3 +
src/content/reference/en/p5/httpGet.mdx | 3 +
src/content/reference/en/p5/httpPost.mdx | 3 +
src/content/reference/en/p5/hue.mdx | 3 +
src/content/reference/en/p5/if.mdx | 3 +
src/content/reference/en/p5/image.mdx | 3 +
src/content/reference/en/p5/imageLight.mdx | 3 +
src/content/reference/en/p5/imageMode.mdx | 3 +
src/content/reference/en/p5/input.mdx | 3 +
src/content/reference/en/p5/int.mdx | 3 +
src/content/reference/en/p5/isLooping.mdx | 3 +
src/content/reference/en/p5/join.mdx | 3 +
src/content/reference/en/p5/key.mdx | 3 +
src/content/reference/en/p5/keyCode.mdx | 3 +
src/content/reference/en/p5/keyIsDown.mdx | 3 +
src/content/reference/en/p5/keyIsPressed.mdx | 3 +
src/content/reference/en/p5/keyPressed.mdx | 3 +
src/content/reference/en/p5/keyReleased.mdx | 3 +
src/content/reference/en/p5/keyTyped.mdx | 3 +
src/content/reference/en/p5/lerp.mdx | 3 +
src/content/reference/en/p5/lerpColor.mdx | 3 +
src/content/reference/en/p5/let.mdx | 3 +
src/content/reference/en/p5/lightFalloff.mdx | 3 +
src/content/reference/en/p5/lightness.mdx | 3 +
src/content/reference/en/p5/lights.mdx | 3 +
src/content/reference/en/p5/line.mdx | 3 +
.../reference/en/p5/linePerspective.mdx | 3 +
src/content/reference/en/p5/loadBytes.mdx | 3 +
src/content/reference/en/p5/loadFont.mdx | 3 +
src/content/reference/en/p5/loadImage.mdx | 3 +
src/content/reference/en/p5/loadJSON.mdx | 3 +
src/content/reference/en/p5/loadModel.mdx | 3 +
src/content/reference/en/p5/loadPixels.mdx | 3 +
src/content/reference/en/p5/loadShader.mdx | 3 +
src/content/reference/en/p5/loadSound.mdx | 3 +
src/content/reference/en/p5/loadStrings.mdx | 3 +
src/content/reference/en/p5/loadTable.mdx | 3 +
src/content/reference/en/p5/loadXML.mdx | 3 +
src/content/reference/en/p5/log.mdx | 3 +
src/content/reference/en/p5/loop.mdx | 3 +
src/content/reference/en/p5/mag.mdx | 3 +
src/content/reference/en/p5/map.mdx | 3 +
src/content/reference/en/p5/match.mdx | 3 +
src/content/reference/en/p5/matchAll.mdx | 3 +
src/content/reference/en/p5/max.mdx | 3 +
src/content/reference/en/p5/metalness.mdx | 3 +
src/content/reference/en/p5/midiToFreq.mdx | 3 +
src/content/reference/en/p5/millis.mdx | 3 +
src/content/reference/en/p5/min.mdx | 3 +
src/content/reference/en/p5/minute.mdx | 3 +
src/content/reference/en/p5/model.mdx | 3 +
src/content/reference/en/p5/month.mdx | 3 +
src/content/reference/en/p5/mouseButton.mdx | 3 +
src/content/reference/en/p5/mouseClicked.mdx | 3 +
src/content/reference/en/p5/mouseDragged.mdx | 3 +
.../reference/en/p5/mouseIsPressed.mdx | 3 +
src/content/reference/en/p5/mouseMoved.mdx | 3 +
src/content/reference/en/p5/mousePressed.mdx | 3 +
src/content/reference/en/p5/mouseReleased.mdx | 3 +
src/content/reference/en/p5/mouseWheel.mdx | 3 +
src/content/reference/en/p5/mouseX.mdx | 3 +
src/content/reference/en/p5/mouseY.mdx | 3 +
src/content/reference/en/p5/movedX.mdx | 3 +
src/content/reference/en/p5/movedY.mdx | 3 +
src/content/reference/en/p5/nf.mdx | 3 +
src/content/reference/en/p5/nfc.mdx | 3 +
src/content/reference/en/p5/nfp.mdx | 3 +
src/content/reference/en/p5/nfs.mdx | 3 +
src/content/reference/en/p5/noCanvas.mdx | 3 +
src/content/reference/en/p5/noCursor.mdx | 3 +
src/content/reference/en/p5/noDebugMode.mdx | 3 +
src/content/reference/en/p5/noErase.mdx | 3 +
src/content/reference/en/p5/noFill.mdx | 3 +
src/content/reference/en/p5/noLights.mdx | 3 +
src/content/reference/en/p5/noLoop.mdx | 3 +
src/content/reference/en/p5/noSmooth.mdx | 3 +
src/content/reference/en/p5/noStroke.mdx | 3 +
src/content/reference/en/p5/noTint.mdx | 3 +
src/content/reference/en/p5/noise.mdx | 3 +
src/content/reference/en/p5/noiseDetail.mdx | 3 +
src/content/reference/en/p5/noiseSeed.mdx | 3 +
src/content/reference/en/p5/norm.mdx | 3 +
src/content/reference/en/p5/normal.mdx | 3 +
.../reference/en/p5/normalMaterial.mdx | 3 +
src/content/reference/en/p5/orbitControl.mdx | 3 +
src/content/reference/en/p5/ortho.mdx | 3 +
src/content/reference/en/p5/outputVolume.mdx | 3 +
src/content/reference/en/p5/p5.Camera.mdx | 45 ++++++-----
src/content/reference/en/p5/p5.Color.mdx | 13 ++--
src/content/reference/en/p5/p5.Element.mdx | 77 ++++++++++---------
src/content/reference/en/p5/p5.File.mdx | 15 ++--
src/content/reference/en/p5/p5.Font.mdx | 9 ++-
.../reference/en/p5/p5.Framebuffer.mdx | 31 ++++----
src/content/reference/en/p5/p5.Geometry.mdx | 29 +++----
src/content/reference/en/p5/p5.Graphics.mdx | 9 ++-
src/content/reference/en/p5/p5.Image.mdx | 45 ++++++-----
.../reference/en/p5/p5.MediaElement.mdx | 41 +++++-----
src/content/reference/en/p5/p5.NumberDict.mdx | 19 +++--
.../reference/en/p5/p5.PrintWriter.mdx | 3 +
src/content/reference/en/p5/p5.Renderer.mdx | 3 +
src/content/reference/en/p5/p5.Shader.mdx | 11 ++-
src/content/reference/en/p5/p5.StringDict.mdx | 3 +
src/content/reference/en/p5/p5.Table.mdx | 55 ++++++-------
src/content/reference/en/p5/p5.TableRow.mdx | 15 ++--
src/content/reference/en/p5/p5.TypedDict.mdx | 23 +++---
src/content/reference/en/p5/p5.Vector.mdx | 69 +++++++++--------
src/content/reference/en/p5/p5.XML.mdx | 39 +++++-----
src/content/reference/en/p5/p5.mdx | 3 +
.../reference/en/p5/pAccelerationX.mdx | 3 +
.../reference/en/p5/pAccelerationY.mdx | 3 +
.../reference/en/p5/pAccelerationZ.mdx | 3 +
src/content/reference/en/p5/pRotationX.mdx | 3 +
src/content/reference/en/p5/pRotationY.mdx | 3 +
src/content/reference/en/p5/pRotationZ.mdx | 3 +
src/content/reference/en/p5/paletteLerp.mdx | 3 +
src/content/reference/en/p5/panorama.mdx | 3 +
src/content/reference/en/p5/perspective.mdx | 3 +
src/content/reference/en/p5/pixelDensity.mdx | 3 +
src/content/reference/en/p5/pixels.mdx | 3 +
src/content/reference/en/p5/plane.mdx | 3 +
src/content/reference/en/p5/pmouseX.mdx | 3 +
src/content/reference/en/p5/pmouseY.mdx | 3 +
src/content/reference/en/p5/point.mdx | 3 +
src/content/reference/en/p5/pointLight.mdx | 3 +
src/content/reference/en/p5/pop.mdx | 3 +
src/content/reference/en/p5/pow.mdx | 3 +
src/content/reference/en/p5/preload.mdx | 3 +
src/content/reference/en/p5/print.mdx | 3 +
src/content/reference/en/p5/push.mdx | 3 +
src/content/reference/en/p5/pwinMouseX.mdx | 3 +
src/content/reference/en/p5/pwinMouseY.mdx | 3 +
src/content/reference/en/p5/quad.mdx | 3 +
.../reference/en/p5/quadraticVertex.mdx | 3 +
src/content/reference/en/p5/radians.mdx | 3 +
src/content/reference/en/p5/random.mdx | 3 +
.../reference/en/p5/randomGaussian.mdx | 3 +
src/content/reference/en/p5/randomSeed.mdx | 3 +
src/content/reference/en/p5/rect.mdx | 3 +
src/content/reference/en/p5/rectMode.mdx | 3 +
src/content/reference/en/p5/red.mdx | 3 +
src/content/reference/en/p5/redraw.mdx | 3 +
src/content/reference/en/p5/remove.mdx | 3 +
.../reference/en/p5/removeElements.mdx | 3 +
src/content/reference/en/p5/removeItem.mdx | 3 +
.../reference/en/p5/requestPointerLock.mdx | 3 +
src/content/reference/en/p5/resetMatrix.mdx | 3 +
src/content/reference/en/p5/resetShader.mdx | 3 +
src/content/reference/en/p5/resizeCanvas.mdx | 3 +
src/content/reference/en/p5/reverse.mdx | 3 +
src/content/reference/en/p5/rotate.mdx | 3 +
src/content/reference/en/p5/rotateX.mdx | 3 +
src/content/reference/en/p5/rotateY.mdx | 3 +
src/content/reference/en/p5/rotateZ.mdx | 3 +
src/content/reference/en/p5/rotationX.mdx | 3 +
src/content/reference/en/p5/rotationY.mdx | 3 +
src/content/reference/en/p5/rotationZ.mdx | 3 +
src/content/reference/en/p5/round.mdx | 3 +
src/content/reference/en/p5/sampleRate.mdx | 3 +
src/content/reference/en/p5/saturation.mdx | 3 +
src/content/reference/en/p5/save.mdx | 3 +
src/content/reference/en/p5/saveCanvas.mdx | 3 +
src/content/reference/en/p5/saveFrames.mdx | 3 +
src/content/reference/en/p5/saveGif.mdx | 3 +
src/content/reference/en/p5/saveJSON.mdx | 3 +
src/content/reference/en/p5/saveSound.mdx | 3 +
src/content/reference/en/p5/saveStrings.mdx | 3 +
src/content/reference/en/p5/saveTable.mdx | 3 +
src/content/reference/en/p5/scale.mdx | 3 +
src/content/reference/en/p5/second.mdx | 3 +
src/content/reference/en/p5/select.mdx | 3 +
src/content/reference/en/p5/selectAll.mdx | 3 +
src/content/reference/en/p5/set.mdx | 3 +
src/content/reference/en/p5/setAttributes.mdx | 3 +
src/content/reference/en/p5/setBPM.mdx | 3 +
src/content/reference/en/p5/setCamera.mdx | 3 +
.../reference/en/p5/setMoveThreshold.mdx | 3 +
.../reference/en/p5/setShakeThreshold.mdx | 3 +
src/content/reference/en/p5/setup.mdx | 3 +
src/content/reference/en/p5/shader.mdx | 3 +
src/content/reference/en/p5/shearX.mdx | 3 +
src/content/reference/en/p5/shearY.mdx | 3 +
src/content/reference/en/p5/shininess.mdx | 3 +
src/content/reference/en/p5/shorten.mdx | 3 +
src/content/reference/en/p5/shuffle.mdx | 3 +
src/content/reference/en/p5/sin.mdx | 3 +
src/content/reference/en/p5/smooth.mdx | 3 +
src/content/reference/en/p5/sort.mdx | 3 +
src/content/reference/en/p5/soundFormats.mdx | 3 +
src/content/reference/en/p5/soundOut.mdx | 3 +
src/content/reference/en/p5/specularColor.mdx | 3 +
.../reference/en/p5/specularMaterial.mdx | 3 +
src/content/reference/en/p5/sphere.mdx | 3 +
src/content/reference/en/p5/splice.mdx | 3 +
src/content/reference/en/p5/split.mdx | 3 +
src/content/reference/en/p5/splitTokens.mdx | 3 +
src/content/reference/en/p5/spotLight.mdx | 3 +
src/content/reference/en/p5/sq.mdx | 3 +
src/content/reference/en/p5/sqrt.mdx | 3 +
src/content/reference/en/p5/square.mdx | 3 +
src/content/reference/en/p5/storeItem.mdx | 3 +
src/content/reference/en/p5/str.mdx | 3 +
src/content/reference/en/p5/stroke.mdx | 3 +
src/content/reference/en/p5/strokeCap.mdx | 3 +
src/content/reference/en/p5/strokeJoin.mdx | 3 +
src/content/reference/en/p5/strokeWeight.mdx | 3 +
src/content/reference/en/p5/subset.mdx | 3 +
src/content/reference/en/p5/tan.mdx | 3 +
src/content/reference/en/p5/text.mdx | 3 +
src/content/reference/en/p5/textAlign.mdx | 3 +
src/content/reference/en/p5/textAscent.mdx | 3 +
src/content/reference/en/p5/textDescent.mdx | 3 +
src/content/reference/en/p5/textFont.mdx | 3 +
src/content/reference/en/p5/textLeading.mdx | 3 +
src/content/reference/en/p5/textOutput.mdx | 3 +
src/content/reference/en/p5/textSize.mdx | 3 +
src/content/reference/en/p5/textStyle.mdx | 3 +
src/content/reference/en/p5/textWidth.mdx | 3 +
src/content/reference/en/p5/textWrap.mdx | 3 +
src/content/reference/en/p5/texture.mdx | 3 +
src/content/reference/en/p5/textureMode.mdx | 3 +
src/content/reference/en/p5/textureWrap.mdx | 3 +
src/content/reference/en/p5/tint.mdx | 3 +
src/content/reference/en/p5/torus.mdx | 3 +
src/content/reference/en/p5/touchEnded.mdx | 3 +
src/content/reference/en/p5/touchMoved.mdx | 3 +
src/content/reference/en/p5/touchStarted.mdx | 3 +
src/content/reference/en/p5/touches.mdx | 3 +
src/content/reference/en/p5/translate.mdx | 3 +
src/content/reference/en/p5/triangle.mdx | 3 +
src/content/reference/en/p5/trim.mdx | 3 +
src/content/reference/en/p5/turnAxis.mdx | 3 +
src/content/reference/en/p5/types/Array.mdx | 3 +
src/content/reference/en/p5/types/Boolean.mdx | 3 +
src/content/reference/en/p5/types/Number.mdx | 3 +
src/content/reference/en/p5/types/Object.mdx | 3 +
src/content/reference/en/p5/types/String.mdx | 3 +
src/content/reference/en/p5/unchar.mdx | 3 +
src/content/reference/en/p5/unhex.mdx | 3 +
src/content/reference/en/p5/updatePixels.mdx | 3 +
.../reference/en/p5/userStartAudio.mdx | 3 +
src/content/reference/en/p5/vertex.mdx | 3 +
src/content/reference/en/p5/webglVersion.mdx | 3 +
src/content/reference/en/p5/while.mdx | 3 +
src/content/reference/en/p5/width.mdx | 3 +
src/content/reference/en/p5/winMouseX.mdx | 3 +
src/content/reference/en/p5/winMouseY.mdx | 3 +
src/content/reference/en/p5/windowHeight.mdx | 3 +
src/content/reference/en/p5/windowResized.mdx | 3 +
src/content/reference/en/p5/windowWidth.mdx | 3 +
src/content/reference/en/p5/year.mdx | 3 +
1031 files changed, 3562 insertions(+), 469 deletions(-)
diff --git a/src/content/reference/en/p5.Amplitude/getLevel.mdx b/src/content/reference/en/p5.Amplitude/getLevel.mdx
index 0da0e343be..4c8f3c3f78 100644
--- a/src/content/reference/en/p5.Amplitude/getLevel.mdx
+++ b/src/content/reference/en/p5.Amplitude/getLevel.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L3209
title: getLevel
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Amplitude/setInput.mdx b/src/content/reference/en/p5.Amplitude/setInput.mdx
index 0b23ef10a6..37ad10c143 100644
--- a/src/content/reference/en/p5.Amplitude/setInput.mdx
+++ b/src/content/reference/en/p5.Amplitude/setInput.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L3117
title: setInput
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Amplitude/smooth.mdx b/src/content/reference/en/p5.Amplitude/smooth.mdx
index a6b3a1be4a..1f8db20c5e 100644
--- a/src/content/reference/en/p5.Amplitude/smooth.mdx
+++ b/src/content/reference/en/p5.Amplitude/smooth.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L3293
title: smooth
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Amplitude/toggleNormalize.mdx b/src/content/reference/en/p5.Amplitude/toggleNormalize.mdx
index 755a9572dc..7d47a550c2 100644
--- a/src/content/reference/en/p5.Amplitude/toggleNormalize.mdx
+++ b/src/content/reference/en/p5.Amplitude/toggleNormalize.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L3264
title: toggleNormalize
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioIn/amp.mdx b/src/content/reference/en/p5.AudioIn/amp.mdx
index e37ee8c799..ec36258b42 100644
--- a/src/content/reference/en/p5.AudioIn/amp.mdx
+++ b/src/content/reference/en/p5.AudioIn/amp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6257
title: amp
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioIn/amplitude.mdx b/src/content/reference/en/p5.AudioIn/amplitude.mdx
index 1347084252..0014486d27 100644
--- a/src/content/reference/en/p5.AudioIn/amplitude.mdx
+++ b/src/content/reference/en/p5.AudioIn/amplitude.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6098
title: amplitude
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioIn/connect.mdx b/src/content/reference/en/p5.AudioIn/connect.mdx
index 86b246ad8a..8a53a60a58 100644
--- a/src/content/reference/en/p5.AudioIn/connect.mdx
+++ b/src/content/reference/en/p5.AudioIn/connect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6191
title: connect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioIn/currentSource.mdx b/src/content/reference/en/p5.AudioIn/currentSource.mdx
index 99b23e3f14..9f9ab50fca 100644
--- a/src/content/reference/en/p5.AudioIn/currentSource.mdx
+++ b/src/content/reference/en/p5.AudioIn/currentSource.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6085
title: currentSource
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioIn/disconnect.mdx b/src/content/reference/en/p5.AudioIn/disconnect.mdx
index 2f181053f1..5ab0938d99 100644
--- a/src/content/reference/en/p5.AudioIn/disconnect.mdx
+++ b/src/content/reference/en/p5.AudioIn/disconnect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6216
title: disconnect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioIn/enabled.mdx b/src/content/reference/en/p5.AudioIn/enabled.mdx
index c8160bcdfd..844f0bbe50 100644
--- a/src/content/reference/en/p5.AudioIn/enabled.mdx
+++ b/src/content/reference/en/p5.AudioIn/enabled.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6090
title: enabled
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioIn/getLevel.mdx b/src/content/reference/en/p5.AudioIn/getLevel.mdx
index 226380bce3..ef88e3fc84 100644
--- a/src/content/reference/en/p5.AudioIn/getLevel.mdx
+++ b/src/content/reference/en/p5.AudioIn/getLevel.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6234
title: getLevel
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioIn/getSources.mdx b/src/content/reference/en/p5.AudioIn/getSources.mdx
index df9ab93f1b..a88231ced2 100644
--- a/src/content/reference/en/p5.AudioIn/getSources.mdx
+++ b/src/content/reference/en/p5.AudioIn/getSources.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6280
title: getSources
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioIn/input.mdx b/src/content/reference/en/p5.AudioIn/input.mdx
index fd9f45cf8f..2a0b6b51b6 100644
--- a/src/content/reference/en/p5.AudioIn/input.mdx
+++ b/src/content/reference/en/p5.AudioIn/input.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6066
title: input
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioIn/mediaStream.mdx b/src/content/reference/en/p5.AudioIn/mediaStream.mdx
index 73c62a2288..70dcd0e7f6 100644
--- a/src/content/reference/en/p5.AudioIn/mediaStream.mdx
+++ b/src/content/reference/en/p5.AudioIn/mediaStream.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6080
title: mediaStream
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioIn/output.mdx b/src/content/reference/en/p5.AudioIn/output.mdx
index 7fa86373ad..65978c05a7 100644
--- a/src/content/reference/en/p5.AudioIn/output.mdx
+++ b/src/content/reference/en/p5.AudioIn/output.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6070
title: output
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioIn/setSource.mdx b/src/content/reference/en/p5.AudioIn/setSource.mdx
index bfd12b7f3a..767e09b590 100644
--- a/src/content/reference/en/p5.AudioIn/setSource.mdx
+++ b/src/content/reference/en/p5.AudioIn/setSource.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6340
title: setSource
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioIn/start.mdx b/src/content/reference/en/p5.AudioIn/start.mdx
index a52ef9fd12..dbae6389cb 100644
--- a/src/content/reference/en/p5.AudioIn/start.mdx
+++ b/src/content/reference/en/p5.AudioIn/start.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6114
title: start
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioIn/stop.mdx b/src/content/reference/en/p5.AudioIn/stop.mdx
index 6cdc868de6..c7fc33d891 100644
--- a/src/content/reference/en/p5.AudioIn/stop.mdx
+++ b/src/content/reference/en/p5.AudioIn/stop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6171
title: stop
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioIn/stream.mdx b/src/content/reference/en/p5.AudioIn/stream.mdx
index c5ff967c99..1ab3d441d3 100644
--- a/src/content/reference/en/p5.AudioIn/stream.mdx
+++ b/src/content/reference/en/p5.AudioIn/stream.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6075
title: stream
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioVoice/connect.mdx b/src/content/reference/en/p5.AudioVoice/connect.mdx
index 3c91ef365c..7d06cfc2cd 100644
--- a/src/content/reference/en/p5.AudioVoice/connect.mdx
+++ b/src/content/reference/en/p5.AudioVoice/connect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11181
title: connect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.AudioVoice/disconnect.mdx b/src/content/reference/en/p5.AudioVoice/disconnect.mdx
index 6c492b2096..8949cf59ad 100644
--- a/src/content/reference/en/p5.AudioVoice/disconnect.mdx
+++ b/src/content/reference/en/p5.AudioVoice/disconnect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11194
title: disconnect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Camera/camera.mdx b/src/content/reference/en/p5.Camera/camera.mdx
index 299293548c..379c27b74a 100644
--- a/src/content/reference/en/p5.Camera/camera.mdx
+++ b/src/content/reference/en/p5.Camera/camera.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L2773
title: camera
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/centerX.mdx b/src/content/reference/en/p5.Camera/centerX.mdx
index 9f519b15dc..f70fb1bd01 100644
--- a/src/content/reference/en/p5.Camera/centerX.mdx
+++ b/src/content/reference/en/p5.Camera/centerX.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L1187
title: centerX
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/centerY.mdx b/src/content/reference/en/p5.Camera/centerY.mdx
index 3dbe3aec5f..0784a934e1 100644
--- a/src/content/reference/en/p5.Camera/centerY.mdx
+++ b/src/content/reference/en/p5.Camera/centerY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L1300
title: centerY
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/centerZ.mdx b/src/content/reference/en/p5.Camera/centerZ.mdx
index 4695abd3c9..3d4ec44624 100644
--- a/src/content/reference/en/p5.Camera/centerZ.mdx
+++ b/src/content/reference/en/p5.Camera/centerZ.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L1413
title: centerZ
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/eyeX.mdx b/src/content/reference/en/p5.Camera/eyeX.mdx
index 6216fb34f1..1f877347dd 100644
--- a/src/content/reference/en/p5.Camera/eyeX.mdx
+++ b/src/content/reference/en/p5.Camera/eyeX.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L851
title: eyeX
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/eyeY.mdx b/src/content/reference/en/p5.Camera/eyeY.mdx
index d00f4dff88..062d411ab0 100644
--- a/src/content/reference/en/p5.Camera/eyeY.mdx
+++ b/src/content/reference/en/p5.Camera/eyeY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L963
title: eyeY
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/eyeZ.mdx b/src/content/reference/en/p5.Camera/eyeZ.mdx
index 1a18868aed..b241b77aa1 100644
--- a/src/content/reference/en/p5.Camera/eyeZ.mdx
+++ b/src/content/reference/en/p5.Camera/eyeZ.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L1075
title: eyeZ
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/frustum.mdx b/src/content/reference/en/p5.Camera/frustum.mdx
index 928f3791f6..f4124b7604 100644
--- a/src/content/reference/en/p5.Camera/frustum.mdx
+++ b/src/content/reference/en/p5.Camera/frustum.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L2274
title: frustum
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/lookAt.mdx b/src/content/reference/en/p5.Camera/lookAt.mdx
index 5ca544376b..c99156f8ae 100644
--- a/src/content/reference/en/p5.Camera/lookAt.mdx
+++ b/src/content/reference/en/p5.Camera/lookAt.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L2676
title: lookAt
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/move.mdx b/src/content/reference/en/p5.Camera/move.mdx
index 90242aa794..2031914649 100644
--- a/src/content/reference/en/p5.Camera/move.mdx
+++ b/src/content/reference/en/p5.Camera/move.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L3001
title: move
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/ortho.mdx b/src/content/reference/en/p5.Camera/ortho.mdx
index 18c4a7f902..2862b83963 100644
--- a/src/content/reference/en/p5.Camera/ortho.mdx
+++ b/src/content/reference/en/p5.Camera/ortho.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L2086
title: ortho
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/pan.mdx b/src/content/reference/en/p5.Camera/pan.mdx
index 0dcf21cb1c..355b972df8 100644
--- a/src/content/reference/en/p5.Camera/pan.mdx
+++ b/src/content/reference/en/p5.Camera/pan.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L2550
title: pan
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/perspective.mdx b/src/content/reference/en/p5.Camera/perspective.mdx
index 68023446a3..05ea5525d6 100644
--- a/src/content/reference/en/p5.Camera/perspective.mdx
+++ b/src/content/reference/en/p5.Camera/perspective.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L1863
title: perspective
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/roll.mdx b/src/content/reference/en/p5.Camera/roll.mdx
index 5c6d061367..6400735d52 100644
--- a/src/content/reference/en/p5.Camera/roll.mdx
+++ b/src/content/reference/en/p5.Camera/roll.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L2472
title: roll
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/set.mdx b/src/content/reference/en/p5.Camera/set.mdx
index 932ffc8cc7..d8f4fe4b37 100644
--- a/src/content/reference/en/p5.Camera/set.mdx
+++ b/src/content/reference/en/p5.Camera/set.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L3252
title: set
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/setPosition.mdx b/src/content/reference/en/p5.Camera/setPosition.mdx
index b1fd82cd1b..478cb42fcd 100644
--- a/src/content/reference/en/p5.Camera/setPosition.mdx
+++ b/src/content/reference/en/p5.Camera/setPosition.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L3098
title: setPosition
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/slerp.mdx b/src/content/reference/en/p5.Camera/slerp.mdx
index 1fb39889ab..058411c4f2 100644
--- a/src/content/reference/en/p5.Camera/slerp.mdx
+++ b/src/content/reference/en/p5.Camera/slerp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L3329
title: slerp
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/tilt.mdx b/src/content/reference/en/p5.Camera/tilt.mdx
index ac6eb65788..d1d678925a 100644
--- a/src/content/reference/en/p5.Camera/tilt.mdx
+++ b/src/content/reference/en/p5.Camera/tilt.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L2613
title: tilt
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/upX.mdx b/src/content/reference/en/p5.Camera/upX.mdx
index a1832a4b12..37109a8eea 100644
--- a/src/content/reference/en/p5.Camera/upX.mdx
+++ b/src/content/reference/en/p5.Camera/upX.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L1526
title: upX
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/upY.mdx b/src/content/reference/en/p5.Camera/upY.mdx
index ad3daabe50..03daca65c1 100644
--- a/src/content/reference/en/p5.Camera/upY.mdx
+++ b/src/content/reference/en/p5.Camera/upY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L1637
title: upY
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Camera/upZ.mdx b/src/content/reference/en/p5.Camera/upZ.mdx
index 23a663ea4e..b0b41c580c 100644
--- a/src/content/reference/en/p5.Camera/upZ.mdx
+++ b/src/content/reference/en/p5.Camera/upZ.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L1748
title: upZ
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5.Color/setAlpha.mdx b/src/content/reference/en/p5.Color/setAlpha.mdx
index 0d5576b3d9..acec234250 100644
--- a/src/content/reference/en/p5.Color/setAlpha.mdx
+++ b/src/content/reference/en/p5.Color/setAlpha.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/p5.Color.js#L698
title: setAlpha
module: Color
submodule: Creating & Reading
diff --git a/src/content/reference/en/p5.Color/setBlue.mdx b/src/content/reference/en/p5.Color/setBlue.mdx
index dce334c749..948c4fd038 100644
--- a/src/content/reference/en/p5.Color/setBlue.mdx
+++ b/src/content/reference/en/p5.Color/setBlue.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/p5.Color.js#L656
title: setBlue
module: Color
submodule: Creating & Reading
diff --git a/src/content/reference/en/p5.Color/setGreen.mdx b/src/content/reference/en/p5.Color/setGreen.mdx
index 83ba822864..5e6d7998d5 100644
--- a/src/content/reference/en/p5.Color/setGreen.mdx
+++ b/src/content/reference/en/p5.Color/setGreen.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/p5.Color.js#L614
title: setGreen
module: Color
submodule: Creating & Reading
diff --git a/src/content/reference/en/p5.Color/setRed.mdx b/src/content/reference/en/p5.Color/setRed.mdx
index 4c95ffd0f0..804442570a 100644
--- a/src/content/reference/en/p5.Color/setRed.mdx
+++ b/src/content/reference/en/p5.Color/setRed.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/p5.Color.js#L572
title: setRed
module: Color
submodule: Creating & Reading
diff --git a/src/content/reference/en/p5.Color/toString.mdx b/src/content/reference/en/p5.Color/toString.mdx
index 9d896e811d..df866b3456 100644
--- a/src/content/reference/en/p5.Color/toString.mdx
+++ b/src/content/reference/en/p5.Color/toString.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/p5.Color.js#L362
title: toString
module: Color
submodule: Creating & Reading
diff --git a/src/content/reference/en/p5.Compressor/attack.mdx b/src/content/reference/en/p5.Compressor/attack.mdx
index 4a21879908..ba018b7c12 100644
--- a/src/content/reference/en/p5.Compressor/attack.mdx
+++ b/src/content/reference/en/p5.Compressor/attack.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10152
title: attack
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Compressor/compressor.mdx b/src/content/reference/en/p5.Compressor/compressor.mdx
index de6d10670d..974a03a511 100644
--- a/src/content/reference/en/p5.Compressor/compressor.mdx
+++ b/src/content/reference/en/p5.Compressor/compressor.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10068
title: compressor
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Compressor/knee.mdx b/src/content/reference/en/p5.Compressor/knee.mdx
index c0bb453b55..24171f2d8f 100644
--- a/src/content/reference/en/p5.Compressor/knee.mdx
+++ b/src/content/reference/en/p5.Compressor/knee.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10178
title: knee
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Compressor/process.mdx b/src/content/reference/en/p5.Compressor/process.mdx
index c7735ac3e1..3c0429c00c 100644
--- a/src/content/reference/en/p5.Compressor/process.mdx
+++ b/src/content/reference/en/p5.Compressor/process.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10084
title: process
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Compressor/ratio.mdx b/src/content/reference/en/p5.Compressor/ratio.mdx
index b690698a40..78b562dc37 100644
--- a/src/content/reference/en/p5.Compressor/ratio.mdx
+++ b/src/content/reference/en/p5.Compressor/ratio.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10204
title: ratio
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Compressor/reduction.mdx b/src/content/reference/en/p5.Compressor/reduction.mdx
index 3ba0efc37c..3a6e9b3942 100644
--- a/src/content/reference/en/p5.Compressor/reduction.mdx
+++ b/src/content/reference/en/p5.Compressor/reduction.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10277
title: reduction
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Compressor/release.mdx b/src/content/reference/en/p5.Compressor/release.mdx
index b7afeade9d..dd24078074 100644
--- a/src/content/reference/en/p5.Compressor/release.mdx
+++ b/src/content/reference/en/p5.Compressor/release.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10252
title: release
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Compressor/set.mdx b/src/content/reference/en/p5.Compressor/set.mdx
index 2d437db769..13e0d174ba 100644
--- a/src/content/reference/en/p5.Compressor/set.mdx
+++ b/src/content/reference/en/p5.Compressor/set.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10112
title: set
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Compressor/threshold.mdx b/src/content/reference/en/p5.Compressor/threshold.mdx
index be246ca2b1..09ad6f992f 100644
--- a/src/content/reference/en/p5.Compressor/threshold.mdx
+++ b/src/content/reference/en/p5.Compressor/threshold.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10228
title: threshold
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Convolver/addImpulse.mdx b/src/content/reference/en/p5.Convolver/addImpulse.mdx
index f64800500d..44c5d00910 100644
--- a/src/content/reference/en/p5.Convolver/addImpulse.mdx
+++ b/src/content/reference/en/p5.Convolver/addImpulse.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8786
title: addImpulse
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Convolver/convolverNode.mdx b/src/content/reference/en/p5.Convolver/convolverNode.mdx
index e95d1a9498..4cfd3491b1 100644
--- a/src/content/reference/en/p5.Convolver/convolverNode.mdx
+++ b/src/content/reference/en/p5.Convolver/convolverNode.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8621
title: convolverNode
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Convolver/impulses.mdx b/src/content/reference/en/p5.Convolver/impulses.mdx
index 131075b1fa..77dae12624 100644
--- a/src/content/reference/en/p5.Convolver/impulses.mdx
+++ b/src/content/reference/en/p5.Convolver/impulses.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8645
title: impulses
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Convolver/process.mdx b/src/content/reference/en/p5.Convolver/process.mdx
index 183fcfe681..d0fe59b516 100644
--- a/src/content/reference/en/p5.Convolver/process.mdx
+++ b/src/content/reference/en/p5.Convolver/process.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8737
title: process
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Convolver/resetImpulse.mdx b/src/content/reference/en/p5.Convolver/resetImpulse.mdx
index 6257633fef..3f6ff516e6 100644
--- a/src/content/reference/en/p5.Convolver/resetImpulse.mdx
+++ b/src/content/reference/en/p5.Convolver/resetImpulse.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8808
title: resetImpulse
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Convolver/toggleImpulse.mdx b/src/content/reference/en/p5.Convolver/toggleImpulse.mdx
index 2b04cddcf1..bd68e734bd 100644
--- a/src/content/reference/en/p5.Convolver/toggleImpulse.mdx
+++ b/src/content/reference/en/p5.Convolver/toggleImpulse.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8831
title: toggleImpulse
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Delay/amp.mdx b/src/content/reference/en/p5.Delay/amp.mdx
index d3b8d8d760..c3242985c4 100644
--- a/src/content/reference/en/p5.Delay/amp.mdx
+++ b/src/content/reference/en/p5.Delay/amp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8223
title: amp
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Delay/connect.mdx b/src/content/reference/en/p5.Delay/connect.mdx
index 9fd0fcce37..19d9b20bda 100644
--- a/src/content/reference/en/p5.Delay/connect.mdx
+++ b/src/content/reference/en/p5.Delay/connect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8234
title: connect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Delay/delayTime.mdx b/src/content/reference/en/p5.Delay/delayTime.mdx
index 5d427eca0e..28c2d47c76 100644
--- a/src/content/reference/en/p5.Delay/delayTime.mdx
+++ b/src/content/reference/en/p5.Delay/delayTime.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8094
title: delayTime
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Delay/disconnect.mdx b/src/content/reference/en/p5.Delay/disconnect.mdx
index a53a149667..df45637ce2 100644
--- a/src/content/reference/en/p5.Delay/disconnect.mdx
+++ b/src/content/reference/en/p5.Delay/disconnect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8242
title: disconnect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Delay/feedback.mdx b/src/content/reference/en/p5.Delay/feedback.mdx
index fbe8f37acb..5f283564e6 100644
--- a/src/content/reference/en/p5.Delay/feedback.mdx
+++ b/src/content/reference/en/p5.Delay/feedback.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8116
title: feedback
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Delay/filter.mdx b/src/content/reference/en/p5.Delay/filter.mdx
index a57c1a2f90..d59886032d 100644
--- a/src/content/reference/en/p5.Delay/filter.mdx
+++ b/src/content/reference/en/p5.Delay/filter.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8148
title: filter
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Delay/leftDelay.mdx b/src/content/reference/en/p5.Delay/leftDelay.mdx
index 6692798090..14ed6338ad 100644
--- a/src/content/reference/en/p5.Delay/leftDelay.mdx
+++ b/src/content/reference/en/p5.Delay/leftDelay.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7989
title: leftDelay
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Delay/process.mdx b/src/content/reference/en/p5.Delay/process.mdx
index c7d0dcefaf..97bc9985e9 100644
--- a/src/content/reference/en/p5.Delay/process.mdx
+++ b/src/content/reference/en/p5.Delay/process.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8049
title: process
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Delay/rightDelay.mdx b/src/content/reference/en/p5.Delay/rightDelay.mdx
index a288de0b0d..49d09152ac 100644
--- a/src/content/reference/en/p5.Delay/rightDelay.mdx
+++ b/src/content/reference/en/p5.Delay/rightDelay.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7999
title: rightDelay
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Delay/setType.mdx b/src/content/reference/en/p5.Delay/setType.mdx
index 311bf4d864..164e730b33 100644
--- a/src/content/reference/en/p5.Delay/setType.mdx
+++ b/src/content/reference/en/p5.Delay/setType.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8170
title: setType
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Distortion/WaveShaperNode.mdx b/src/content/reference/en/p5.Distortion/WaveShaperNode.mdx
index 15bbc05e95..51e7e0f1d3 100644
--- a/src/content/reference/en/p5.Distortion/WaveShaperNode.mdx
+++ b/src/content/reference/en/p5.Distortion/WaveShaperNode.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10864
title: WaveShaperNode
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Distortion/getAmount.mdx b/src/content/reference/en/p5.Distortion/getAmount.mdx
index 1ce6a44f6c..686cb2f68b 100644
--- a/src/content/reference/en/p5.Distortion/getAmount.mdx
+++ b/src/content/reference/en/p5.Distortion/getAmount.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10923
title: getAmount
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Distortion/getOversample.mdx b/src/content/reference/en/p5.Distortion/getOversample.mdx
index 632dc793d1..bc6196dbfa 100644
--- a/src/content/reference/en/p5.Distortion/getOversample.mdx
+++ b/src/content/reference/en/p5.Distortion/getOversample.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10937
title: getOversample
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Distortion/process.mdx b/src/content/reference/en/p5.Distortion/process.mdx
index e729aa4c85..1a5430e652 100644
--- a/src/content/reference/en/p5.Distortion/process.mdx
+++ b/src/content/reference/en/p5.Distortion/process.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10883
title: process
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Distortion/set.mdx b/src/content/reference/en/p5.Distortion/set.mdx
index 065baa115d..f87b426f44 100644
--- a/src/content/reference/en/p5.Distortion/set.mdx
+++ b/src/content/reference/en/p5.Distortion/set.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10900
title: set
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.EQ/bands.mdx b/src/content/reference/en/p5.EQ/bands.mdx
index f7cbe584b0..396bd1ded8 100644
--- a/src/content/reference/en/p5.EQ/bands.mdx
+++ b/src/content/reference/en/p5.EQ/bands.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7198
title: bands
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.EQ/process.mdx b/src/content/reference/en/p5.EQ/process.mdx
index 9763873eab..acdca12643 100644
--- a/src/content/reference/en/p5.EQ/process.mdx
+++ b/src/content/reference/en/p5.EQ/process.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7239
title: process
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Effect/amp.mdx b/src/content/reference/en/p5.Effect/amp.mdx
index b9626788ee..536d604e97 100644
--- a/src/content/reference/en/p5.Effect/amp.mdx
+++ b/src/content/reference/en/p5.Effect/amp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6478
title: amp
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Effect/chain.mdx b/src/content/reference/en/p5.Effect/chain.mdx
index 839d962bfb..c13cc448aa 100644
--- a/src/content/reference/en/p5.Effect/chain.mdx
+++ b/src/content/reference/en/p5.Effect/chain.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6502
title: chain
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Effect/connect.mdx b/src/content/reference/en/p5.Effect/connect.mdx
index 9a37c3929e..e24bbac1c1 100644
--- a/src/content/reference/en/p5.Effect/connect.mdx
+++ b/src/content/reference/en/p5.Effect/connect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6542
title: connect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Effect/disconnect.mdx b/src/content/reference/en/p5.Effect/disconnect.mdx
index cb6bfabe5c..19caf274f2 100644
--- a/src/content/reference/en/p5.Effect/disconnect.mdx
+++ b/src/content/reference/en/p5.Effect/disconnect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6557
title: disconnect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Effect/drywet.mdx b/src/content/reference/en/p5.Effect/drywet.mdx
index c40fafcdfb..92619ec7ba 100644
--- a/src/content/reference/en/p5.Effect/drywet.mdx
+++ b/src/content/reference/en/p5.Effect/drywet.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6525
title: drywet
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Element/addClass.mdx b/src/content/reference/en/p5.Element/addClass.mdx
index 87d46c9ad1..81fc654ede 100644
--- a/src/content/reference/en/p5.Element/addClass.mdx
+++ b/src/content/reference/en/p5.Element/addClass.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L2554
title: addClass
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/attribute.mdx b/src/content/reference/en/p5.Element/attribute.mdx
index 2e7e872bbf..048ab67bc2 100644
--- a/src/content/reference/en/p5.Element/attribute.mdx
+++ b/src/content/reference/en/p5.Element/attribute.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L3275
title: attribute
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/center.mdx b/src/content/reference/en/p5.Element/center.mdx
index 9e0b292000..5e783ee2a3 100644
--- a/src/content/reference/en/p5.Element/center.mdx
+++ b/src/content/reference/en/p5.Element/center.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L2827
title: center
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/child.mdx b/src/content/reference/en/p5.Element/child.mdx
index 85bdcb2195..5f09771fd6 100644
--- a/src/content/reference/en/p5.Element/child.mdx
+++ b/src/content/reference/en/p5.Element/child.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L2722
title: child
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/class.mdx b/src/content/reference/en/p5.Element/class.mdx
index 9a8bd087bb..f14bc88a8e 100644
--- a/src/content/reference/en/p5.Element/class.mdx
+++ b/src/content/reference/en/p5.Element/class.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L301
title: class
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/doubleClicked.mdx b/src/content/reference/en/p5.Element/doubleClicked.mdx
index 74e225d844..e7aa403cb5 100644
--- a/src/content/reference/en/p5.Element/doubleClicked.mdx
+++ b/src/content/reference/en/p5.Element/doubleClicked.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L405
title: doubleClicked
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/dragLeave.mdx b/src/content/reference/en/p5.Element/dragLeave.mdx
index 4d5ce57cae..78659f61f3 100644
--- a/src/content/reference/en/p5.Element/dragLeave.mdx
+++ b/src/content/reference/en/p5.Element/dragLeave.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L923
title: dragLeave
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/dragOver.mdx b/src/content/reference/en/p5.Element/dragOver.mdx
index 512bf1a8c9..cb7ad95850 100644
--- a/src/content/reference/en/p5.Element/dragOver.mdx
+++ b/src/content/reference/en/p5.Element/dragOver.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L881
title: dragOver
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/draggable.mdx b/src/content/reference/en/p5.Element/draggable.mdx
index f6daf7a750..32abeee643 100644
--- a/src/content/reference/en/p5.Element/draggable.mdx
+++ b/src/content/reference/en/p5.Element/draggable.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L3945
title: draggable
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/drop.mdx b/src/content/reference/en/p5.Element/drop.mdx
index 190c53c76d..6690fb9362 100644
--- a/src/content/reference/en/p5.Element/drop.mdx
+++ b/src/content/reference/en/p5.Element/drop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L3790
title: drop
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/elt.mdx b/src/content/reference/en/p5.Element/elt.mdx
index e7f3aa9ed2..bf10ca9495 100644
--- a/src/content/reference/en/p5.Element/elt.mdx
+++ b/src/content/reference/en/p5.Element/elt.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L56
title: elt
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/hasClass.mdx b/src/content/reference/en/p5.Element/hasClass.mdx
index 9486af0c6d..0bf6fb6203 100644
--- a/src/content/reference/en/p5.Element/hasClass.mdx
+++ b/src/content/reference/en/p5.Element/hasClass.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L2636
title: hasClass
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/height.mdx b/src/content/reference/en/p5.Element/height.mdx
index 1617069a20..75b74b3151 100644
--- a/src/content/reference/en/p5.Element/height.mdx
+++ b/src/content/reference/en/p5.Element/height.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L102
title: height
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/hide.mdx b/src/content/reference/en/p5.Element/hide.mdx
index b3bc701998..10a97f41f2 100644
--- a/src/content/reference/en/p5.Element/hide.mdx
+++ b/src/content/reference/en/p5.Element/hide.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L3529
title: hide
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/html.mdx b/src/content/reference/en/p5.Element/html.mdx
index 72ecc2a189..30df6a6fd2 100644
--- a/src/content/reference/en/p5.Element/html.mdx
+++ b/src/content/reference/en/p5.Element/html.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L2893
title: html
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/id.mdx b/src/content/reference/en/p5.Element/id.mdx
index aaea103619..5e6bd5809c 100644
--- a/src/content/reference/en/p5.Element/id.mdx
+++ b/src/content/reference/en/p5.Element/id.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L254
title: id
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/mouseClicked.mdx b/src/content/reference/en/p5.Element/mouseClicked.mdx
index 03efb2e2a4..eae418e7b9 100644
--- a/src/content/reference/en/p5.Element/mouseClicked.mdx
+++ b/src/content/reference/en/p5.Element/mouseClicked.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L578
title: mouseClicked
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/mouseMoved.mdx b/src/content/reference/en/p5.Element/mouseMoved.mdx
index eb52bf9b14..ee3be5660c 100644
--- a/src/content/reference/en/p5.Element/mouseMoved.mdx
+++ b/src/content/reference/en/p5.Element/mouseMoved.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L623
title: mouseMoved
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/mouseOut.mdx b/src/content/reference/en/p5.Element/mouseOut.mdx
index 619c04b649..ab5eaf3446 100644
--- a/src/content/reference/en/p5.Element/mouseOut.mdx
+++ b/src/content/reference/en/p5.Element/mouseOut.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L707
title: mouseOut
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/mouseOver.mdx b/src/content/reference/en/p5.Element/mouseOver.mdx
index 97e6756faa..ae97164adc 100644
--- a/src/content/reference/en/p5.Element/mouseOver.mdx
+++ b/src/content/reference/en/p5.Element/mouseOver.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L665
title: mouseOver
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/mousePressed.mdx b/src/content/reference/en/p5.Element/mousePressed.mdx
index 596f6f53ac..cadbdbcc53 100644
--- a/src/content/reference/en/p5.Element/mousePressed.mdx
+++ b/src/content/reference/en/p5.Element/mousePressed.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L350
title: mousePressed
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/mouseReleased.mdx b/src/content/reference/en/p5.Element/mouseReleased.mdx
index b3963ecc09..f080b7a552 100644
--- a/src/content/reference/en/p5.Element/mouseReleased.mdx
+++ b/src/content/reference/en/p5.Element/mouseReleased.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L533
title: mouseReleased
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/mouseWheel.mdx b/src/content/reference/en/p5.Element/mouseWheel.mdx
index cf747cccd8..b0a497178c 100644
--- a/src/content/reference/en/p5.Element/mouseWheel.mdx
+++ b/src/content/reference/en/p5.Element/mouseWheel.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L447
title: mouseWheel
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/parent.mdx b/src/content/reference/en/p5.Element/parent.mdx
index 16ff9db2d4..de19906d11 100644
--- a/src/content/reference/en/p5.Element/parent.mdx
+++ b/src/content/reference/en/p5.Element/parent.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L112
title: parent
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/position.mdx b/src/content/reference/en/p5.Element/position.mdx
index fac7047db3..7947fae393 100644
--- a/src/content/reference/en/p5.Element/position.mdx
+++ b/src/content/reference/en/p5.Element/position.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L2980
title: position
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/remove.mdx b/src/content/reference/en/p5.Element/remove.mdx
index fae43a25be..394a45e51d 100644
--- a/src/content/reference/en/p5.Element/remove.mdx
+++ b/src/content/reference/en/p5.Element/remove.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L3731
title: remove
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/removeAttribute.mdx b/src/content/reference/en/p5.Element/removeAttribute.mdx
index b58bb009a4..948cc8a506 100644
--- a/src/content/reference/en/p5.Element/removeAttribute.mdx
+++ b/src/content/reference/en/p5.Element/removeAttribute.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L3359
title: removeAttribute
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/removeClass.mdx b/src/content/reference/en/p5.Element/removeClass.mdx
index d5596e99ec..14643824da 100644
--- a/src/content/reference/en/p5.Element/removeClass.mdx
+++ b/src/content/reference/en/p5.Element/removeClass.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L2593
title: removeClass
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/show.mdx b/src/content/reference/en/p5.Element/show.mdx
index 239d92f5d7..afe83278bc 100644
--- a/src/content/reference/en/p5.Element/show.mdx
+++ b/src/content/reference/en/p5.Element/show.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L3493
title: show
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/size.mdx b/src/content/reference/en/p5.Element/size.mdx
index 07a2e7d16f..edbd4f5202 100644
--- a/src/content/reference/en/p5.Element/size.mdx
+++ b/src/content/reference/en/p5.Element/size.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L3562
title: size
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/style.mdx b/src/content/reference/en/p5.Element/style.mdx
index 68c715965e..0dd98ba21a 100644
--- a/src/content/reference/en/p5.Element/style.mdx
+++ b/src/content/reference/en/p5.Element/style.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L3118
title: style
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/toggleClass.mdx b/src/content/reference/en/p5.Element/toggleClass.mdx
index 4b77f5f1c6..c63ee1161a 100644
--- a/src/content/reference/en/p5.Element/toggleClass.mdx
+++ b/src/content/reference/en/p5.Element/toggleClass.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L2677
title: toggleClass
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/touchEnded.mdx b/src/content/reference/en/p5.Element/touchEnded.mdx
index 33f415e51d..85f10638c7 100644
--- a/src/content/reference/en/p5.Element/touchEnded.mdx
+++ b/src/content/reference/en/p5.Element/touchEnded.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L837
title: touchEnded
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/touchMoved.mdx b/src/content/reference/en/p5.Element/touchMoved.mdx
index 742efbd8a1..57c52759c3 100644
--- a/src/content/reference/en/p5.Element/touchMoved.mdx
+++ b/src/content/reference/en/p5.Element/touchMoved.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L793
title: touchMoved
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/touchStarted.mdx b/src/content/reference/en/p5.Element/touchStarted.mdx
index 920aea5cd5..d9d4b0a572 100644
--- a/src/content/reference/en/p5.Element/touchStarted.mdx
+++ b/src/content/reference/en/p5.Element/touchStarted.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L749
title: touchStarted
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/value.mdx b/src/content/reference/en/p5.Element/value.mdx
index 34f3eefacf..d005a256c5 100644
--- a/src/content/reference/en/p5.Element/value.mdx
+++ b/src/content/reference/en/p5.Element/value.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L3410
title: value
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Element/width.mdx b/src/content/reference/en/p5.Element/width.mdx
index afc948d530..98d098808c 100644
--- a/src/content/reference/en/p5.Element/width.mdx
+++ b/src/content/reference/en/p5.Element/width.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L94
title: width
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Envelope/add.mdx b/src/content/reference/en/p5.Envelope/add.mdx
index eb64360388..a1ad525587 100644
--- a/src/content/reference/en/p5.Envelope/add.mdx
+++ b/src/content/reference/en/p5.Envelope/add.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L5460
title: add
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/attackLevel.mdx b/src/content/reference/en/p5.Envelope/attackLevel.mdx
index 37bd168257..53f68a92c0 100644
--- a/src/content/reference/en/p5.Envelope/attackLevel.mdx
+++ b/src/content/reference/en/p5.Envelope/attackLevel.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4772
title: attackLevel
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/attackTime.mdx b/src/content/reference/en/p5.Envelope/attackTime.mdx
index 753d106156..9c62cdac06 100644
--- a/src/content/reference/en/p5.Envelope/attackTime.mdx
+++ b/src/content/reference/en/p5.Envelope/attackTime.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4767
title: attackTime
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/decayLevel.mdx b/src/content/reference/en/p5.Envelope/decayLevel.mdx
index da359a96b1..1d6ab86154 100644
--- a/src/content/reference/en/p5.Envelope/decayLevel.mdx
+++ b/src/content/reference/en/p5.Envelope/decayLevel.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4784
title: decayLevel
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/decayTime.mdx b/src/content/reference/en/p5.Envelope/decayTime.mdx
index 925aaf5ae4..9c783fd9ef 100644
--- a/src/content/reference/en/p5.Envelope/decayTime.mdx
+++ b/src/content/reference/en/p5.Envelope/decayTime.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4778
title: decayTime
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/mult.mdx b/src/content/reference/en/p5.Envelope/mult.mdx
index bca7371f67..dce4064518 100644
--- a/src/content/reference/en/p5.Envelope/mult.mdx
+++ b/src/content/reference/en/p5.Envelope/mult.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L5479
title: mult
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/play.mdx b/src/content/reference/en/p5.Envelope/play.mdx
index 2508ca3595..27abde7a01 100644
--- a/src/content/reference/en/p5.Envelope/play.mdx
+++ b/src/content/reference/en/p5.Envelope/play.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L5078
title: play
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/ramp.mdx b/src/content/reference/en/p5.Envelope/ramp.mdx
index 2cd9d84f0a..6cd4479f70 100644
--- a/src/content/reference/en/p5.Envelope/ramp.mdx
+++ b/src/content/reference/en/p5.Envelope/ramp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L5350
title: ramp
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/releaseLevel.mdx b/src/content/reference/en/p5.Envelope/releaseLevel.mdx
index 6ce28b77bb..6ef5fd39fb 100644
--- a/src/content/reference/en/p5.Envelope/releaseLevel.mdx
+++ b/src/content/reference/en/p5.Envelope/releaseLevel.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4796
title: releaseLevel
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/releaseTime.mdx b/src/content/reference/en/p5.Envelope/releaseTime.mdx
index 6d044242af..3394276754 100644
--- a/src/content/reference/en/p5.Envelope/releaseTime.mdx
+++ b/src/content/reference/en/p5.Envelope/releaseTime.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4790
title: releaseTime
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/scale.mdx b/src/content/reference/en/p5.Envelope/scale.mdx
index 4a32ec5fe4..781b048ef2 100644
--- a/src/content/reference/en/p5.Envelope/scale.mdx
+++ b/src/content/reference/en/p5.Envelope/scale.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L5498
title: scale
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/set.mdx b/src/content/reference/en/p5.Envelope/set.mdx
index 2129898428..51853ba0c2 100644
--- a/src/content/reference/en/p5.Envelope/set.mdx
+++ b/src/content/reference/en/p5.Envelope/set.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4833
title: set
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/setADSR.mdx b/src/content/reference/en/p5.Envelope/setADSR.mdx
index a3501f1210..ca4539ed37 100644
--- a/src/content/reference/en/p5.Envelope/setADSR.mdx
+++ b/src/content/reference/en/p5.Envelope/setADSR.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4895
title: setADSR
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/setExp.mdx b/src/content/reference/en/p5.Envelope/setExp.mdx
index f50244b3a7..5912ecb99b 100644
--- a/src/content/reference/en/p5.Envelope/setExp.mdx
+++ b/src/content/reference/en/p5.Envelope/setExp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L5055
title: setExp
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/setInput.mdx b/src/content/reference/en/p5.Envelope/setInput.mdx
index 4e6cb069ef..047713d43a 100644
--- a/src/content/reference/en/p5.Envelope/setInput.mdx
+++ b/src/content/reference/en/p5.Envelope/setInput.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L5037
title: setInput
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/setRange.mdx b/src/content/reference/en/p5.Envelope/setRange.mdx
index 92f2e5063a..ee39b09b7a 100644
--- a/src/content/reference/en/p5.Envelope/setRange.mdx
+++ b/src/content/reference/en/p5.Envelope/setRange.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4964
title: setRange
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/triggerAttack.mdx b/src/content/reference/en/p5.Envelope/triggerAttack.mdx
index e57eeaef9a..fbd4af0284 100644
--- a/src/content/reference/en/p5.Envelope/triggerAttack.mdx
+++ b/src/content/reference/en/p5.Envelope/triggerAttack.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L5148
title: triggerAttack
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Envelope/triggerRelease.mdx b/src/content/reference/en/p5.Envelope/triggerRelease.mdx
index fec7153918..9cc66d34c2 100644
--- a/src/content/reference/en/p5.Envelope/triggerRelease.mdx
+++ b/src/content/reference/en/p5.Envelope/triggerRelease.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L5256
title: triggerRelease
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.FFT/analyze.mdx b/src/content/reference/en/p5.FFT/analyze.mdx
index b9aa276730..31194e6795 100644
--- a/src/content/reference/en/p5.FFT/analyze.mdx
+++ b/src/content/reference/en/p5.FFT/analyze.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L3553
title: analyze
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.FFT/getCentroid.mdx b/src/content/reference/en/p5.FFT/getCentroid.mdx
index 81a4e80260..1030ae1253 100644
--- a/src/content/reference/en/p5.FFT/getCentroid.mdx
+++ b/src/content/reference/en/p5.FFT/getCentroid.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L3739
title: getCentroid
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.FFT/getEnergy.mdx b/src/content/reference/en/p5.FFT/getEnergy.mdx
index b168d17f54..1f4373d30e 100644
--- a/src/content/reference/en/p5.FFT/getEnergy.mdx
+++ b/src/content/reference/en/p5.FFT/getEnergy.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L3650
title: getEnergy
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.FFT/getOctaveBands.mdx b/src/content/reference/en/p5.FFT/getOctaveBands.mdx
index 7da5d09924..f86013b595 100644
--- a/src/content/reference/en/p5.FFT/getOctaveBands.mdx
+++ b/src/content/reference/en/p5.FFT/getOctaveBands.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L3925
title: getOctaveBands
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.FFT/linAverages.mdx b/src/content/reference/en/p5.FFT/linAverages.mdx
index bc8cefa018..22b811c2a1 100644
--- a/src/content/reference/en/p5.FFT/linAverages.mdx
+++ b/src/content/reference/en/p5.FFT/linAverages.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L3854
title: linAverages
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.FFT/logAverages.mdx b/src/content/reference/en/p5.FFT/logAverages.mdx
index 3e3a5afc17..8a75c9b844 100644
--- a/src/content/reference/en/p5.FFT/logAverages.mdx
+++ b/src/content/reference/en/p5.FFT/logAverages.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L3889
title: logAverages
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.FFT/setInput.mdx b/src/content/reference/en/p5.FFT/setInput.mdx
index f32249dc47..8dc4ece166 100644
--- a/src/content/reference/en/p5.FFT/setInput.mdx
+++ b/src/content/reference/en/p5.FFT/setInput.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L3476
title: setInput
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.FFT/smooth.mdx b/src/content/reference/en/p5.FFT/smooth.mdx
index a73687d845..2f94254a90 100644
--- a/src/content/reference/en/p5.FFT/smooth.mdx
+++ b/src/content/reference/en/p5.FFT/smooth.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L3826
title: smooth
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.FFT/waveform.mdx b/src/content/reference/en/p5.FFT/waveform.mdx
index 2e56284652..d686f7c67f 100644
--- a/src/content/reference/en/p5.FFT/waveform.mdx
+++ b/src/content/reference/en/p5.FFT/waveform.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L3501
title: waveform
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.File/data.mdx b/src/content/reference/en/p5.File/data.mdx
index 6ca81e4bc3..60c10654ed 100644
--- a/src/content/reference/en/p5.File/data.mdx
+++ b/src/content/reference/en/p5.File/data.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L5769
title: data
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.File/file.mdx b/src/content/reference/en/p5.File/file.mdx
index bd75e85276..3ee7d70bc8 100644
--- a/src/content/reference/en/p5.File/file.mdx
+++ b/src/content/reference/en/p5.File/file.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L5573
title: file
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.File/name.mdx b/src/content/reference/en/p5.File/name.mdx
index 69634a917b..4c91f4da53 100644
--- a/src/content/reference/en/p5.File/name.mdx
+++ b/src/content/reference/en/p5.File/name.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L5699
title: name
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.File/size.mdx b/src/content/reference/en/p5.File/size.mdx
index 68a9b3c10e..f59c88b6e2 100644
--- a/src/content/reference/en/p5.File/size.mdx
+++ b/src/content/reference/en/p5.File/size.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L5734
title: size
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.File/subtype.mdx b/src/content/reference/en/p5.File/subtype.mdx
index c5f3dff9f2..4996e2ce49 100644
--- a/src/content/reference/en/p5.File/subtype.mdx
+++ b/src/content/reference/en/p5.File/subtype.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L5660
title: subtype
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.File/type.mdx b/src/content/reference/en/p5.File/type.mdx
index 08d7b9f518..bca023fe49 100644
--- a/src/content/reference/en/p5.File/type.mdx
+++ b/src/content/reference/en/p5.File/type.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L5622
title: type
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.Filter/biquadFilter.mdx b/src/content/reference/en/p5.Filter/biquadFilter.mdx
index 7a709a1d98..b58365da3a 100644
--- a/src/content/reference/en/p5.Filter/biquadFilter.mdx
+++ b/src/content/reference/en/p5.Filter/biquadFilter.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6719
title: biquadFilter
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Filter/freq.mdx b/src/content/reference/en/p5.Filter/freq.mdx
index bba672d1cc..ae47b58b8f 100644
--- a/src/content/reference/en/p5.Filter/freq.mdx
+++ b/src/content/reference/en/p5.Filter/freq.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6781
title: freq
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Filter/gain.mdx b/src/content/reference/en/p5.Filter/gain.mdx
index 459e511992..3590b27e7f 100644
--- a/src/content/reference/en/p5.Filter/gain.mdx
+++ b/src/content/reference/en/p5.Filter/gain.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6838
title: gain
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Filter/process.mdx b/src/content/reference/en/p5.Filter/process.mdx
index e75781351a..a1ca6baa4f 100644
--- a/src/content/reference/en/p5.Filter/process.mdx
+++ b/src/content/reference/en/p5.Filter/process.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6742
title: process
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Filter/res.mdx b/src/content/reference/en/p5.Filter/res.mdx
index f465b014d4..f7095913ea 100644
--- a/src/content/reference/en/p5.Filter/res.mdx
+++ b/src/content/reference/en/p5.Filter/res.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6811
title: res
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Filter/set.mdx b/src/content/reference/en/p5.Filter/set.mdx
index 873808dc5a..93b174a08a 100644
--- a/src/content/reference/en/p5.Filter/set.mdx
+++ b/src/content/reference/en/p5.Filter/set.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6760
title: set
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Filter/setType.mdx b/src/content/reference/en/p5.Filter/setType.mdx
index 008e56c498..df41f8d56b 100644
--- a/src/content/reference/en/p5.Filter/setType.mdx
+++ b/src/content/reference/en/p5.Filter/setType.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6884
title: setType
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Filter/toggle.mdx b/src/content/reference/en/p5.Filter/toggle.mdx
index aaf6f80430..ac3556c8e7 100644
--- a/src/content/reference/en/p5.Filter/toggle.mdx
+++ b/src/content/reference/en/p5.Filter/toggle.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6864
title: toggle
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Font/font.mdx b/src/content/reference/en/p5.Font/font.mdx
index 8d109488be..ce14aaa35d 100644
--- a/src/content/reference/en/p5.Font/font.mdx
+++ b/src/content/reference/en/p5.Font/font.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/typography/p5.Font.js#L51
title: font
module: Typography
submodule: Loading & Displaying
diff --git a/src/content/reference/en/p5.Font/textBounds.mdx b/src/content/reference/en/p5.Font/textBounds.mdx
index 5a4f7916e7..e089529756 100644
--- a/src/content/reference/en/p5.Font/textBounds.mdx
+++ b/src/content/reference/en/p5.Font/textBounds.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/typography/p5.Font.js#L62
title: textBounds
module: Typography
submodule: Loading & Displaying
diff --git a/src/content/reference/en/p5.Font/textToPoints.mdx b/src/content/reference/en/p5.Font/textToPoints.mdx
index 3645b5300c..721e76c73a 100644
--- a/src/content/reference/en/p5.Font/textToPoints.mdx
+++ b/src/content/reference/en/p5.Font/textToPoints.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/typography/p5.Font.js#L279
title: textToPoints
module: Typography
submodule: Loading & Displaying
diff --git a/src/content/reference/en/p5.Framebuffer/autoSized.mdx b/src/content/reference/en/p5.Framebuffer/autoSized.mdx
index ccd867039f..c31711a689 100644
--- a/src/content/reference/en/p5.Framebuffer/autoSized.mdx
+++ b/src/content/reference/en/p5.Framebuffer/autoSized.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Framebuffer.js#L402
title: autoSized
module: Rendering
submodule: ''
diff --git a/src/content/reference/en/p5.Framebuffer/begin.mdx b/src/content/reference/en/p5.Framebuffer/begin.mdx
index 5bc5e971ac..09b4da81d8 100644
--- a/src/content/reference/en/p5.Framebuffer/begin.mdx
+++ b/src/content/reference/en/p5.Framebuffer/begin.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Framebuffer.js#L1118
title: begin
module: Rendering
submodule: ''
diff --git a/src/content/reference/en/p5.Framebuffer/color.mdx b/src/content/reference/en/p5.Framebuffer/color.mdx
index 0665c78b4b..25d0b9e0d8 100644
--- a/src/content/reference/en/p5.Framebuffer/color.mdx
+++ b/src/content/reference/en/p5.Framebuffer/color.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Framebuffer.js#L1701
title: color
module: Rendering
submodule: ''
diff --git a/src/content/reference/en/p5.Framebuffer/createCamera.mdx b/src/content/reference/en/p5.Framebuffer/createCamera.mdx
index 2b88fc7a22..2f44f0fc52 100644
--- a/src/content/reference/en/p5.Framebuffer/createCamera.mdx
+++ b/src/content/reference/en/p5.Framebuffer/createCamera.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Framebuffer.js#L892
title: createCamera
module: Rendering
submodule: ''
diff --git a/src/content/reference/en/p5.Framebuffer/depth.mdx b/src/content/reference/en/p5.Framebuffer/depth.mdx
index b21195d5d4..eb8622b64f 100644
--- a/src/content/reference/en/p5.Framebuffer/depth.mdx
+++ b/src/content/reference/en/p5.Framebuffer/depth.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Framebuffer.js#L1754
title: depth
module: Rendering
submodule: ''
diff --git a/src/content/reference/en/p5.Framebuffer/draw.mdx b/src/content/reference/en/p5.Framebuffer/draw.mdx
index 4213a696fc..e7e224b00e 100644
--- a/src/content/reference/en/p5.Framebuffer/draw.mdx
+++ b/src/content/reference/en/p5.Framebuffer/draw.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Framebuffer.js#L1323
title: draw
module: Rendering
submodule: ''
diff --git a/src/content/reference/en/p5.Framebuffer/end.mdx b/src/content/reference/en/p5.Framebuffer/end.mdx
index d1d41ed2ab..f82d465875 100644
--- a/src/content/reference/en/p5.Framebuffer/end.mdx
+++ b/src/content/reference/en/p5.Framebuffer/end.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Framebuffer.js#L1254
title: end
module: Rendering
submodule: ''
diff --git a/src/content/reference/en/p5.Framebuffer/get.mdx b/src/content/reference/en/p5.Framebuffer/get.mdx
index be11d278b1..f529c0b7b2 100644
--- a/src/content/reference/en/p5.Framebuffer/get.mdx
+++ b/src/content/reference/en/p5.Framebuffer/get.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Framebuffer.js#L1455
title: get
module: Rendering
submodule: ''
diff --git a/src/content/reference/en/p5.Framebuffer/loadPixels.mdx b/src/content/reference/en/p5.Framebuffer/loadPixels.mdx
index 96bea59f79..ebf238b9de 100644
--- a/src/content/reference/en/p5.Framebuffer/loadPixels.mdx
+++ b/src/content/reference/en/p5.Framebuffer/loadPixels.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Framebuffer.js#L1386
title: loadPixels
module: Rendering
submodule: ''
diff --git a/src/content/reference/en/p5.Framebuffer/pixelDensity.mdx b/src/content/reference/en/p5.Framebuffer/pixelDensity.mdx
index ba7e157d6a..31cb485b8f 100644
--- a/src/content/reference/en/p5.Framebuffer/pixelDensity.mdx
+++ b/src/content/reference/en/p5.Framebuffer/pixelDensity.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Framebuffer.js#L297
title: pixelDensity
module: Rendering
submodule: ''
diff --git a/src/content/reference/en/p5.Framebuffer/pixels.mdx b/src/content/reference/en/p5.Framebuffer/pixels.mdx
index 123512633e..aa1789fac8 100644
--- a/src/content/reference/en/p5.Framebuffer/pixels.mdx
+++ b/src/content/reference/en/p5.Framebuffer/pixels.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Framebuffer.js#L111
title: pixels
module: Rendering
submodule: ''
diff --git a/src/content/reference/en/p5.Framebuffer/remove.mdx b/src/content/reference/en/p5.Framebuffer/remove.mdx
index 9d5631d6ff..2620e47217 100644
--- a/src/content/reference/en/p5.Framebuffer/remove.mdx
+++ b/src/content/reference/en/p5.Framebuffer/remove.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Framebuffer.js#L1031
title: remove
module: Rendering
submodule: ''
diff --git a/src/content/reference/en/p5.Framebuffer/resize.mdx b/src/content/reference/en/p5.Framebuffer/resize.mdx
index 1911fd9d9f..522e7c6622 100644
--- a/src/content/reference/en/p5.Framebuffer/resize.mdx
+++ b/src/content/reference/en/p5.Framebuffer/resize.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Framebuffer.js#L238
title: resize
module: Rendering
submodule: ''
diff --git a/src/content/reference/en/p5.Framebuffer/updatePixels.mdx b/src/content/reference/en/p5.Framebuffer/updatePixels.mdx
index fbde648bbe..e5ab420a4f 100644
--- a/src/content/reference/en/p5.Framebuffer/updatePixels.mdx
+++ b/src/content/reference/en/p5.Framebuffer/updatePixels.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Framebuffer.js#L1581
title: updatePixels
module: Rendering
submodule: ''
diff --git a/src/content/reference/en/p5.Gain/amp.mdx b/src/content/reference/en/p5.Gain/amp.mdx
index d12a40eaf6..9e1c055b69 100644
--- a/src/content/reference/en/p5.Gain/amp.mdx
+++ b/src/content/reference/en/p5.Gain/amp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11098
title: amp
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Gain/connect.mdx b/src/content/reference/en/p5.Gain/connect.mdx
index c432403acf..b80f634536 100644
--- a/src/content/reference/en/p5.Gain/connect.mdx
+++ b/src/content/reference/en/p5.Gain/connect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11070
title: connect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Gain/disconnect.mdx b/src/content/reference/en/p5.Gain/disconnect.mdx
index 35b6f43131..4946586dbe 100644
--- a/src/content/reference/en/p5.Gain/disconnect.mdx
+++ b/src/content/reference/en/p5.Gain/disconnect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11084
title: disconnect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Gain/setInput.mdx b/src/content/reference/en/p5.Gain/setInput.mdx
index 02595c2b6e..8c5dbb7f30 100644
--- a/src/content/reference/en/p5.Gain/setInput.mdx
+++ b/src/content/reference/en/p5.Gain/setInput.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11055
title: setInput
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Geometry/calculateBoundingBox.mdx b/src/content/reference/en/p5.Geometry/calculateBoundingBox.mdx
index 4c641b1346..217185a8be 100644
--- a/src/content/reference/en/p5.Geometry/calculateBoundingBox.mdx
+++ b/src/content/reference/en/p5.Geometry/calculateBoundingBox.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Geometry.js#L682
title: calculateBoundingBox
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5.Geometry/clearColors.mdx b/src/content/reference/en/p5.Geometry/clearColors.mdx
index 90c7837d35..4fa4b3df20 100644
--- a/src/content/reference/en/p5.Geometry/clearColors.mdx
+++ b/src/content/reference/en/p5.Geometry/clearColors.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Geometry.js#L863
title: clearColors
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5.Geometry/computeFaces.mdx b/src/content/reference/en/p5.Geometry/computeFaces.mdx
index 57902687f5..0a0d3699ff 100644
--- a/src/content/reference/en/p5.Geometry/computeFaces.mdx
+++ b/src/content/reference/en/p5.Geometry/computeFaces.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Geometry.js#L1340
title: computeFaces
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5.Geometry/computeNormals.mdx b/src/content/reference/en/p5.Geometry/computeNormals.mdx
index 3ef02ce1a2..67d2d7901d 100644
--- a/src/content/reference/en/p5.Geometry/computeNormals.mdx
+++ b/src/content/reference/en/p5.Geometry/computeNormals.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Geometry.js#L1508
title: computeNormals
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5.Geometry/faces.mdx b/src/content/reference/en/p5.Geometry/faces.mdx
index 0a4884e60c..abfb070aec 100644
--- a/src/content/reference/en/p5.Geometry/faces.mdx
+++ b/src/content/reference/en/p5.Geometry/faces.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Geometry.js#L505
title: faces
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5.Geometry/flipU.mdx b/src/content/reference/en/p5.Geometry/flipU.mdx
index 6e50573681..fca243f3d2 100644
--- a/src/content/reference/en/p5.Geometry/flipU.mdx
+++ b/src/content/reference/en/p5.Geometry/flipU.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Geometry.js#L1150
title: flipU
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5.Geometry/flipV.mdx b/src/content/reference/en/p5.Geometry/flipV.mdx
index cdae0753d3..388e3f2270 100644
--- a/src/content/reference/en/p5.Geometry/flipV.mdx
+++ b/src/content/reference/en/p5.Geometry/flipV.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Geometry.js#L1245
title: flipV
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5.Geometry/normalize.mdx b/src/content/reference/en/p5.Geometry/normalize.mdx
index c92d3e89f9..673aa339b8 100644
--- a/src/content/reference/en/p5.Geometry/normalize.mdx
+++ b/src/content/reference/en/p5.Geometry/normalize.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Geometry.js#L2228
title: normalize
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5.Geometry/saveObj.mdx b/src/content/reference/en/p5.Geometry/saveObj.mdx
index fbb1b4185c..930d80c4b5 100644
--- a/src/content/reference/en/p5.Geometry/saveObj.mdx
+++ b/src/content/reference/en/p5.Geometry/saveObj.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Geometry.js#L928
title: saveObj
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5.Geometry/saveStl.mdx b/src/content/reference/en/p5.Geometry/saveStl.mdx
index d337eb7b09..3d7716cdd2 100644
--- a/src/content/reference/en/p5.Geometry/saveStl.mdx
+++ b/src/content/reference/en/p5.Geometry/saveStl.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Geometry.js#L1028
title: saveStl
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5.Geometry/uvs.mdx b/src/content/reference/en/p5.Geometry/uvs.mdx
index 54c991993d..179080523b 100644
--- a/src/content/reference/en/p5.Geometry/uvs.mdx
+++ b/src/content/reference/en/p5.Geometry/uvs.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Geometry.js#L591
title: uvs
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5.Geometry/vertexNormals.mdx b/src/content/reference/en/p5.Geometry/vertexNormals.mdx
index 827b65ef37..7226b99c59 100644
--- a/src/content/reference/en/p5.Geometry/vertexNormals.mdx
+++ b/src/content/reference/en/p5.Geometry/vertexNormals.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Geometry.js#L375
title: vertexNormals
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5.Geometry/vertices.mdx b/src/content/reference/en/p5.Geometry/vertices.mdx
index 88fa952145..80c8ed12b3 100644
--- a/src/content/reference/en/p5.Geometry/vertices.mdx
+++ b/src/content/reference/en/p5.Geometry/vertices.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Geometry.js#L252
title: vertices
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5.Graphics/createFramebuffer.mdx b/src/content/reference/en/p5.Graphics/createFramebuffer.mdx
index f28565f0bc..839629552e 100644
--- a/src/content/reference/en/p5.Graphics/createFramebuffer.mdx
+++ b/src/content/reference/en/p5.Graphics/createFramebuffer.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Graphics.js#L400
title: createFramebuffer
module: Rendering
submodule: Rendering
diff --git a/src/content/reference/en/p5.Graphics/remove.mdx b/src/content/reference/en/p5.Graphics/remove.mdx
index 4b4f7d5be4..1cf56e8321 100644
--- a/src/content/reference/en/p5.Graphics/remove.mdx
+++ b/src/content/reference/en/p5.Graphics/remove.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Graphics.js#L320
title: remove
module: Rendering
submodule: Rendering
diff --git a/src/content/reference/en/p5.Graphics/reset.mdx b/src/content/reference/en/p5.Graphics/reset.mdx
index fb503a215c..5c428c1aa3 100644
--- a/src/content/reference/en/p5.Graphics/reset.mdx
+++ b/src/content/reference/en/p5.Graphics/reset.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Graphics.js#L153
title: reset
module: Rendering
submodule: Rendering
diff --git a/src/content/reference/en/p5.Image/blend.mdx b/src/content/reference/en/p5.Image/blend.mdx
index d6f209fbb9..4abd48a340 100644
--- a/src/content/reference/en/p5.Image/blend.mdx
+++ b/src/content/reference/en/p5.Image/blend.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L1430
title: blend
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/copy.mdx b/src/content/reference/en/p5.Image/copy.mdx
index 6864b81827..d0248ded67 100644
--- a/src/content/reference/en/p5.Image/copy.mdx
+++ b/src/content/reference/en/p5.Image/copy.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L1006
title: copy
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/delay.mdx b/src/content/reference/en/p5.Image/delay.mdx
index ba310d334b..9cd3d45e85 100644
--- a/src/content/reference/en/p5.Image/delay.mdx
+++ b/src/content/reference/en/p5.Image/delay.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L1952
title: delay
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/filter.mdx b/src/content/reference/en/p5.Image/filter.mdx
index ced6b7f39f..09a2f16bd5 100644
--- a/src/content/reference/en/p5.Image/filter.mdx
+++ b/src/content/reference/en/p5.Image/filter.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L1199
title: filter
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/get.mdx b/src/content/reference/en/p5.Image/get.mdx
index 837e683815..f278a96107 100644
--- a/src/content/reference/en/p5.Image/get.mdx
+++ b/src/content/reference/en/p5.Image/get.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L563
title: get
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/getCurrentFrame.mdx b/src/content/reference/en/p5.Image/getCurrentFrame.mdx
index e60841bd6c..614a8cb7e0 100644
--- a/src/content/reference/en/p5.Image/getCurrentFrame.mdx
+++ b/src/content/reference/en/p5.Image/getCurrentFrame.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L1716
title: getCurrentFrame
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/height.mdx b/src/content/reference/en/p5.Image/height.mdx
index 183b6de732..028c582833 100644
--- a/src/content/reference/en/p5.Image/height.mdx
+++ b/src/content/reference/en/p5.Image/height.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L151
title: height
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/loadPixels.mdx b/src/content/reference/en/p5.Image/loadPixels.mdx
index a91e138b65..1dfe52a1f0 100644
--- a/src/content/reference/en/p5.Image/loadPixels.mdx
+++ b/src/content/reference/en/p5.Image/loadPixels.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L381
title: loadPixels
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/mask.mdx b/src/content/reference/en/p5.Image/mask.mdx
index 79f1a51d17..e9db8e0506 100644
--- a/src/content/reference/en/p5.Image/mask.mdx
+++ b/src/content/reference/en/p5.Image/mask.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L1109
title: mask
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/numFrames.mdx b/src/content/reference/en/p5.Image/numFrames.mdx
index 0370651a94..b0d87c5a40 100644
--- a/src/content/reference/en/p5.Image/numFrames.mdx
+++ b/src/content/reference/en/p5.Image/numFrames.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L1818
title: numFrames
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/pause.mdx b/src/content/reference/en/p5.Image/pause.mdx
index bd93a65513..ccb592aa5f 100644
--- a/src/content/reference/en/p5.Image/pause.mdx
+++ b/src/content/reference/en/p5.Image/pause.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L1903
title: pause
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/pixelDensity.mdx b/src/content/reference/en/p5.Image/pixelDensity.mdx
index 4d4dec5025..b68e81ded0 100644
--- a/src/content/reference/en/p5.Image/pixelDensity.mdx
+++ b/src/content/reference/en/p5.Image/pixelDensity.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L299
title: pixelDensity
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/pixels.mdx b/src/content/reference/en/p5.Image/pixels.mdx
index beb0679217..5a403638e4 100644
--- a/src/content/reference/en/p5.Image/pixels.mdx
+++ b/src/content/reference/en/p5.Image/pixels.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L198
title: pixels
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/play.mdx b/src/content/reference/en/p5.Image/play.mdx
index 21bdf48c36..2ec1fabf2b 100644
--- a/src/content/reference/en/p5.Image/play.mdx
+++ b/src/content/reference/en/p5.Image/play.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L1858
title: play
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/reset.mdx b/src/content/reference/en/p5.Image/reset.mdx
index 0fcaedd917..0dc800d8c8 100644
--- a/src/content/reference/en/p5.Image/reset.mdx
+++ b/src/content/reference/en/p5.Image/reset.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L1668
title: reset
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/resize.mdx b/src/content/reference/en/p5.Image/resize.mdx
index cd617ea78f..5763a8c52c 100644
--- a/src/content/reference/en/p5.Image/resize.mdx
+++ b/src/content/reference/en/p5.Image/resize.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L837
title: resize
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/save.mdx b/src/content/reference/en/p5.Image/save.mdx
index a1ffce0d38..0c90f55f3d 100644
--- a/src/content/reference/en/p5.Image/save.mdx
+++ b/src/content/reference/en/p5.Image/save.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L1600
title: save
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/set.mdx b/src/content/reference/en/p5.Image/set.mdx
index 483f3d138a..2b2669cb55 100644
--- a/src/content/reference/en/p5.Image/set.mdx
+++ b/src/content/reference/en/p5.Image/set.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L697
title: set
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/setFrame.mdx b/src/content/reference/en/p5.Image/setFrame.mdx
index 03ae44301e..45369c3bd8 100644
--- a/src/content/reference/en/p5.Image/setFrame.mdx
+++ b/src/content/reference/en/p5.Image/setFrame.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L1758
title: setFrame
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/updatePixels.mdx b/src/content/reference/en/p5.Image/updatePixels.mdx
index 63c3aabee3..4157c669d6 100644
--- a/src/content/reference/en/p5.Image/updatePixels.mdx
+++ b/src/content/reference/en/p5.Image/updatePixels.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L462
title: updatePixels
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.Image/width.mdx b/src/content/reference/en/p5.Image/width.mdx
index 7c193d9a1e..eb14c71160 100644
--- a/src/content/reference/en/p5.Image/width.mdx
+++ b/src/content/reference/en/p5.Image/width.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L114
title: width
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5.MediaElement/addCue.mdx b/src/content/reference/en/p5.MediaElement/addCue.mdx
index b2e9554437..a8c99cab0a 100644
--- a/src/content/reference/en/p5.MediaElement/addCue.mdx
+++ b/src/content/reference/en/p5.MediaElement/addCue.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L5263
title: addCue
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/autoplay.mdx b/src/content/reference/en/p5.MediaElement/autoplay.mdx
index 39aec8d0b3..e72cd0fa99 100644
--- a/src/content/reference/en/p5.MediaElement/autoplay.mdx
+++ b/src/content/reference/en/p5.MediaElement/autoplay.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L4538
title: autoplay
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/clearCues.mdx b/src/content/reference/en/p5.MediaElement/clearCues.mdx
index 2ce0b5d895..5872f22c03 100644
--- a/src/content/reference/en/p5.MediaElement/clearCues.mdx
+++ b/src/content/reference/en/p5.MediaElement/clearCues.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L5399
title: clearCues
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/connect.mdx b/src/content/reference/en/p5.MediaElement/connect.mdx
index d42105374c..422d197f59 100644
--- a/src/content/reference/en/p5.MediaElement/connect.mdx
+++ b/src/content/reference/en/p5.MediaElement/connect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L5095
title: connect
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/disconnect.mdx b/src/content/reference/en/p5.MediaElement/disconnect.mdx
index 4c1b24fcaa..affe9b01b3 100644
--- a/src/content/reference/en/p5.MediaElement/disconnect.mdx
+++ b/src/content/reference/en/p5.MediaElement/disconnect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L5148
title: disconnect
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/duration.mdx b/src/content/reference/en/p5.MediaElement/duration.mdx
index 8321bf3f45..e8f0a98a7f 100644
--- a/src/content/reference/en/p5.MediaElement/duration.mdx
+++ b/src/content/reference/en/p5.MediaElement/duration.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L4868
title: duration
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/hideControls.mdx b/src/content/reference/en/p5.MediaElement/hideControls.mdx
index 3de6211a62..2f3523ae73 100644
--- a/src/content/reference/en/p5.MediaElement/hideControls.mdx
+++ b/src/content/reference/en/p5.MediaElement/hideControls.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L5207
title: hideControls
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/loop.mdx b/src/content/reference/en/p5.MediaElement/loop.mdx
index 83102dfcbd..7f2bd89d6a 100644
--- a/src/content/reference/en/p5.MediaElement/loop.mdx
+++ b/src/content/reference/en/p5.MediaElement/loop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L4400
title: loop
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/noLoop.mdx b/src/content/reference/en/p5.MediaElement/noLoop.mdx
index 0440f08b42..4102a6eb18 100644
--- a/src/content/reference/en/p5.MediaElement/noLoop.mdx
+++ b/src/content/reference/en/p5.MediaElement/noLoop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L4458
title: noLoop
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/onended.mdx b/src/content/reference/en/p5.MediaElement/onended.mdx
index 6319770038..311e93fd09 100644
--- a/src/content/reference/en/p5.MediaElement/onended.mdx
+++ b/src/content/reference/en/p5.MediaElement/onended.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L5024
title: onended
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/pause.mdx b/src/content/reference/en/p5.MediaElement/pause.mdx
index 2a301c64dd..970785e89a 100644
--- a/src/content/reference/en/p5.MediaElement/pause.mdx
+++ b/src/content/reference/en/p5.MediaElement/pause.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L4340
title: pause
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/play.mdx b/src/content/reference/en/p5.MediaElement/play.mdx
index 2824bd8873..838d2eee0c 100644
--- a/src/content/reference/en/p5.MediaElement/play.mdx
+++ b/src/content/reference/en/p5.MediaElement/play.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L4215
title: play
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/removeCue.mdx b/src/content/reference/en/p5.MediaElement/removeCue.mdx
index d815e2de3d..70312b8530 100644
--- a/src/content/reference/en/p5.MediaElement/removeCue.mdx
+++ b/src/content/reference/en/p5.MediaElement/removeCue.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L5328
title: removeCue
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/showControls.mdx b/src/content/reference/en/p5.MediaElement/showControls.mdx
index be420c91a8..c91cd29d4e 100644
--- a/src/content/reference/en/p5.MediaElement/showControls.mdx
+++ b/src/content/reference/en/p5.MediaElement/showControls.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L5166
title: showControls
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/speed.mdx b/src/content/reference/en/p5.MediaElement/speed.mdx
index 409a49b78b..92cf5545b3 100644
--- a/src/content/reference/en/p5.MediaElement/speed.mdx
+++ b/src/content/reference/en/p5.MediaElement/speed.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L4691
title: speed
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/src.mdx b/src/content/reference/en/p5.MediaElement/src.mdx
index 09c6ebedbc..3ebbc1d936 100644
--- a/src/content/reference/en/p5.MediaElement/src.mdx
+++ b/src/content/reference/en/p5.MediaElement/src.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L4158
title: src
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/stop.mdx b/src/content/reference/en/p5.MediaElement/stop.mdx
index 1e248ada7b..f1deaf8339 100644
--- a/src/content/reference/en/p5.MediaElement/stop.mdx
+++ b/src/content/reference/en/p5.MediaElement/stop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L4281
title: stop
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/time.mdx b/src/content/reference/en/p5.MediaElement/time.mdx
index c401e41a02..e2a46fb930 100644
--- a/src/content/reference/en/p5.MediaElement/time.mdx
+++ b/src/content/reference/en/p5.MediaElement/time.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L4766
title: time
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MediaElement/volume.mdx b/src/content/reference/en/p5.MediaElement/volume.mdx
index fb9575e340..378bda0d4e 100644
--- a/src/content/reference/en/p5.MediaElement/volume.mdx
+++ b/src/content/reference/en/p5.MediaElement/volume.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L4623
title: volume
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5.MonoSynth/amp.mdx b/src/content/reference/en/p5.MonoSynth/amp.mdx
index aaef17f9b4..d3cc23031f 100644
--- a/src/content/reference/en/p5.MonoSynth/amp.mdx
+++ b/src/content/reference/en/p5.MonoSynth/amp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11544
title: amp
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.MonoSynth/attack.mdx b/src/content/reference/en/p5.MonoSynth/attack.mdx
index 6d040e9792..d500649507 100644
--- a/src/content/reference/en/p5.MonoSynth/attack.mdx
+++ b/src/content/reference/en/p5.MonoSynth/attack.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11322
title: attack
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.MonoSynth/connect.mdx b/src/content/reference/en/p5.MonoSynth/connect.mdx
index 9362f66bab..5f5552de59 100644
--- a/src/content/reference/en/p5.MonoSynth/connect.mdx
+++ b/src/content/reference/en/p5.MonoSynth/connect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11564
title: connect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.MonoSynth/decay.mdx b/src/content/reference/en/p5.MonoSynth/decay.mdx
index ab579078f5..96776bd892 100644
--- a/src/content/reference/en/p5.MonoSynth/decay.mdx
+++ b/src/content/reference/en/p5.MonoSynth/decay.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11328
title: decay
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.MonoSynth/disconnect.mdx b/src/content/reference/en/p5.MonoSynth/disconnect.mdx
index 45cce86306..82953e60cc 100644
--- a/src/content/reference/en/p5.MonoSynth/disconnect.mdx
+++ b/src/content/reference/en/p5.MonoSynth/disconnect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11578
title: disconnect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.MonoSynth/dispose.mdx b/src/content/reference/en/p5.MonoSynth/dispose.mdx
index f6647dd1fb..02119dd694 100644
--- a/src/content/reference/en/p5.MonoSynth/dispose.mdx
+++ b/src/content/reference/en/p5.MonoSynth/dispose.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11592
title: dispose
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.MonoSynth/play.mdx b/src/content/reference/en/p5.MonoSynth/play.mdx
index 5ac2a4e0ad..490162357f 100644
--- a/src/content/reference/en/p5.MonoSynth/play.mdx
+++ b/src/content/reference/en/p5.MonoSynth/play.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11379
title: play
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.MonoSynth/release.mdx b/src/content/reference/en/p5.MonoSynth/release.mdx
index c823cf7687..019e75a29f 100644
--- a/src/content/reference/en/p5.MonoSynth/release.mdx
+++ b/src/content/reference/en/p5.MonoSynth/release.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11338
title: release
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.MonoSynth/setADSR.mdx b/src/content/reference/en/p5.MonoSynth/setADSR.mdx
index 16c63bfe65..b00821b8fd 100644
--- a/src/content/reference/en/p5.MonoSynth/setADSR.mdx
+++ b/src/content/reference/en/p5.MonoSynth/setADSR.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11516
title: setADSR
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.MonoSynth/sustain.mdx b/src/content/reference/en/p5.MonoSynth/sustain.mdx
index 33f641aa6a..5c535972e6 100644
--- a/src/content/reference/en/p5.MonoSynth/sustain.mdx
+++ b/src/content/reference/en/p5.MonoSynth/sustain.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11333
title: sustain
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.MonoSynth/triggerAttack.mdx b/src/content/reference/en/p5.MonoSynth/triggerAttack.mdx
index 15e1de3148..bbb81a7415 100644
--- a/src/content/reference/en/p5.MonoSynth/triggerAttack.mdx
+++ b/src/content/reference/en/p5.MonoSynth/triggerAttack.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11431
title: triggerAttack
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.MonoSynth/triggerRelease.mdx b/src/content/reference/en/p5.MonoSynth/triggerRelease.mdx
index 0ebf6b2afb..c2179845ee 100644
--- a/src/content/reference/en/p5.MonoSynth/triggerRelease.mdx
+++ b/src/content/reference/en/p5.MonoSynth/triggerRelease.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11478
title: triggerRelease
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Noise/setType.mdx b/src/content/reference/en/p5.Noise/setType.mdx
index d7e92a0843..3ab0fc385f 100644
--- a/src/content/reference/en/p5.Noise/setType.mdx
+++ b/src/content/reference/en/p5.Noise/setType.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L5657
title: setType
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.NumberDict/add.mdx b/src/content/reference/en/p5.NumberDict/add.mdx
index 3f08fbd88f..4a773edc67 100644
--- a/src/content/reference/en/p5.NumberDict/add.mdx
+++ b/src/content/reference/en/p5.NumberDict/add.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L439
title: add
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.NumberDict/div.mdx b/src/content/reference/en/p5.NumberDict/div.mdx
index 3e79826efe..452f91bef7 100644
--- a/src/content/reference/en/p5.NumberDict/div.mdx
+++ b/src/content/reference/en/p5.NumberDict/div.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L516
title: div
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.NumberDict/maxKey.mdx b/src/content/reference/en/p5.NumberDict/maxKey.mdx
index 629d9282c2..35e3699bde 100644
--- a/src/content/reference/en/p5.NumberDict/maxKey.mdx
+++ b/src/content/reference/en/p5.NumberDict/maxKey.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L649
title: maxKey
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.NumberDict/maxValue.mdx b/src/content/reference/en/p5.NumberDict/maxValue.mdx
index e43974aadb..01fcc494c6 100644
--- a/src/content/reference/en/p5.NumberDict/maxValue.mdx
+++ b/src/content/reference/en/p5.NumberDict/maxValue.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L587
title: maxValue
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.NumberDict/minKey.mdx b/src/content/reference/en/p5.NumberDict/minKey.mdx
index c25f2299d0..7bf6e9d0ef 100644
--- a/src/content/reference/en/p5.NumberDict/minKey.mdx
+++ b/src/content/reference/en/p5.NumberDict/minKey.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L629
title: minKey
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.NumberDict/minValue.mdx b/src/content/reference/en/p5.NumberDict/minValue.mdx
index eab31d7977..a23ea7a2f3 100644
--- a/src/content/reference/en/p5.NumberDict/minValue.mdx
+++ b/src/content/reference/en/p5.NumberDict/minValue.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L567
title: minValue
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.NumberDict/mult.mdx b/src/content/reference/en/p5.NumberDict/mult.mdx
index f304f34c5d..a86b0a0acb 100644
--- a/src/content/reference/en/p5.NumberDict/mult.mdx
+++ b/src/content/reference/en/p5.NumberDict/mult.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L489
title: mult
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.NumberDict/sub.mdx b/src/content/reference/en/p5.NumberDict/sub.mdx
index 84e6e9d687..42e69d3ef1 100644
--- a/src/content/reference/en/p5.NumberDict/sub.mdx
+++ b/src/content/reference/en/p5.NumberDict/sub.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L466
title: sub
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.Oscillator/add.mdx b/src/content/reference/en/p5.Oscillator/add.mdx
index 113a96816c..42f1de68e2 100644
--- a/src/content/reference/en/p5.Oscillator/add.mdx
+++ b/src/content/reference/en/p5.Oscillator/add.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4522
title: add
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Oscillator/amp.mdx b/src/content/reference/en/p5.Oscillator/amp.mdx
index 5bbfb45878..2386293f0e 100644
--- a/src/content/reference/en/p5.Oscillator/amp.mdx
+++ b/src/content/reference/en/p5.Oscillator/amp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4238
title: amp
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Oscillator/connect.mdx b/src/content/reference/en/p5.Oscillator/connect.mdx
index 4e6cb842a1..f9627cb96d 100644
--- a/src/content/reference/en/p5.Oscillator/connect.mdx
+++ b/src/content/reference/en/p5.Oscillator/connect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4399
title: connect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Oscillator/disconnect.mdx b/src/content/reference/en/p5.Oscillator/disconnect.mdx
index 56d3ee5dc8..7860635519 100644
--- a/src/content/reference/en/p5.Oscillator/disconnect.mdx
+++ b/src/content/reference/en/p5.Oscillator/disconnect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4420
title: disconnect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Oscillator/freq.mdx b/src/content/reference/en/p5.Oscillator/freq.mdx
index f95058121f..7ae7178649 100644
--- a/src/content/reference/en/p5.Oscillator/freq.mdx
+++ b/src/content/reference/en/p5.Oscillator/freq.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4285
title: freq
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Oscillator/getAmp.mdx b/src/content/reference/en/p5.Oscillator/getAmp.mdx
index bead971918..f8c89474c4 100644
--- a/src/content/reference/en/p5.Oscillator/getAmp.mdx
+++ b/src/content/reference/en/p5.Oscillator/getAmp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4271
title: getAmp
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Oscillator/getFreq.mdx b/src/content/reference/en/p5.Oscillator/getFreq.mdx
index b02e1cf74e..b34f97ef1d 100644
--- a/src/content/reference/en/p5.Oscillator/getFreq.mdx
+++ b/src/content/reference/en/p5.Oscillator/getFreq.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4360
title: getFreq
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Oscillator/getPan.mdx b/src/content/reference/en/p5.Oscillator/getPan.mdx
index 3d639ea066..39c56a49fc 100644
--- a/src/content/reference/en/p5.Oscillator/getPan.mdx
+++ b/src/content/reference/en/p5.Oscillator/getPan.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4460
title: getPan
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Oscillator/getType.mdx b/src/content/reference/en/p5.Oscillator/getType.mdx
index 6102174434..6cdc25fa59 100644
--- a/src/content/reference/en/p5.Oscillator/getType.mdx
+++ b/src/content/reference/en/p5.Oscillator/getType.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4386
title: getType
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Oscillator/mult.mdx b/src/content/reference/en/p5.Oscillator/mult.mdx
index ea6cbd28cc..10a5ee1fd2 100644
--- a/src/content/reference/en/p5.Oscillator/mult.mdx
+++ b/src/content/reference/en/p5.Oscillator/mult.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4543
title: mult
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Oscillator/pan.mdx b/src/content/reference/en/p5.Oscillator/pan.mdx
index 87d7d09d41..b97772a176 100644
--- a/src/content/reference/en/p5.Oscillator/pan.mdx
+++ b/src/content/reference/en/p5.Oscillator/pan.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4444
title: pan
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Oscillator/phase.mdx b/src/content/reference/en/p5.Oscillator/phase.mdx
index 618c6eee0a..0200da6227 100644
--- a/src/content/reference/en/p5.Oscillator/phase.mdx
+++ b/src/content/reference/en/p5.Oscillator/phase.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4494
title: phase
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Oscillator/scale.mdx b/src/content/reference/en/p5.Oscillator/scale.mdx
index 9817841043..b99c33cdff 100644
--- a/src/content/reference/en/p5.Oscillator/scale.mdx
+++ b/src/content/reference/en/p5.Oscillator/scale.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4563
title: scale
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Oscillator/setType.mdx b/src/content/reference/en/p5.Oscillator/setType.mdx
index 32766a2eb5..ce6a54414b 100644
--- a/src/content/reference/en/p5.Oscillator/setType.mdx
+++ b/src/content/reference/en/p5.Oscillator/setType.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4373
title: setType
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Oscillator/start.mdx b/src/content/reference/en/p5.Oscillator/start.mdx
index 82301ab394..5e4f4c66d1 100644
--- a/src/content/reference/en/p5.Oscillator/start.mdx
+++ b/src/content/reference/en/p5.Oscillator/start.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4168
title: start
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Oscillator/stop.mdx b/src/content/reference/en/p5.Oscillator/stop.mdx
index 9b9d0631ba..cf6899a8b5 100644
--- a/src/content/reference/en/p5.Oscillator/stop.mdx
+++ b/src/content/reference/en/p5.Oscillator/stop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4218
title: stop
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Panner3D/maxDist.mdx b/src/content/reference/en/p5.Panner3D/maxDist.mdx
index bab86d00eb..5a13f803c2 100644
--- a/src/content/reference/en/p5.Panner3D/maxDist.mdx
+++ b/src/content/reference/en/p5.Panner3D/maxDist.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7852
title: maxDist
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Panner3D/orient.mdx b/src/content/reference/en/p5.Panner3D/orient.mdx
index 45f87bc234..63df115933 100644
--- a/src/content/reference/en/p5.Panner3D/orient.mdx
+++ b/src/content/reference/en/p5.Panner3D/orient.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7753
title: orient
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Panner3D/orientX.mdx b/src/content/reference/en/p5.Panner3D/orientX.mdx
index 87655abbb8..5714c76895 100644
--- a/src/content/reference/en/p5.Panner3D/orientX.mdx
+++ b/src/content/reference/en/p5.Panner3D/orientX.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7772
title: orientX
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Panner3D/orientY.mdx b/src/content/reference/en/p5.Panner3D/orientY.mdx
index 619e4f6a30..ce2b122dec 100644
--- a/src/content/reference/en/p5.Panner3D/orientY.mdx
+++ b/src/content/reference/en/p5.Panner3D/orientY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7779
title: orientY
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Panner3D/orientZ.mdx b/src/content/reference/en/p5.Panner3D/orientZ.mdx
index b16ecb8aa9..5d952d8e64 100644
--- a/src/content/reference/en/p5.Panner3D/orientZ.mdx
+++ b/src/content/reference/en/p5.Panner3D/orientZ.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7786
title: orientZ
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Panner3D/panner.mdx b/src/content/reference/en/p5.Panner3D/panner.mdx
index dffe350c61..a7f4cd2bb2 100644
--- a/src/content/reference/en/p5.Panner3D/panner.mdx
+++ b/src/content/reference/en/p5.Panner3D/panner.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7629
title: panner
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Panner3D/positionX.mdx b/src/content/reference/en/p5.Panner3D/positionX.mdx
index dd250e8ad3..7431cbd82a 100644
--- a/src/content/reference/en/p5.Panner3D/positionX.mdx
+++ b/src/content/reference/en/p5.Panner3D/positionX.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7687
title: positionX
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Panner3D/positionY.mdx b/src/content/reference/en/p5.Panner3D/positionY.mdx
index 469ec09f4e..802b67c869 100644
--- a/src/content/reference/en/p5.Panner3D/positionY.mdx
+++ b/src/content/reference/en/p5.Panner3D/positionY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7694
title: positionY
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Panner3D/positionZ.mdx b/src/content/reference/en/p5.Panner3D/positionZ.mdx
index 254bf1e378..11c95f23f7 100644
--- a/src/content/reference/en/p5.Panner3D/positionZ.mdx
+++ b/src/content/reference/en/p5.Panner3D/positionZ.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7701
title: positionZ
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Panner3D/process.mdx b/src/content/reference/en/p5.Panner3D/process.mdx
index 52723cbbd9..95e061e6b1 100644
--- a/src/content/reference/en/p5.Panner3D/process.mdx
+++ b/src/content/reference/en/p5.Panner3D/process.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7654
title: process
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Panner3D/rollof.mdx b/src/content/reference/en/p5.Panner3D/rollof.mdx
index b78656b069..5c81136887 100644
--- a/src/content/reference/en/p5.Panner3D/rollof.mdx
+++ b/src/content/reference/en/p5.Panner3D/rollof.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7869
title: rollof
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Panner3D/set.mdx b/src/content/reference/en/p5.Panner3D/set.mdx
index 8b8426420d..a02fc9573b 100644
--- a/src/content/reference/en/p5.Panner3D/set.mdx
+++ b/src/content/reference/en/p5.Panner3D/set.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7668
title: set
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Panner3D/setFalloff.mdx b/src/content/reference/en/p5.Panner3D/setFalloff.mdx
index e8a02b8761..3fb398a2a3 100644
--- a/src/content/reference/en/p5.Panner3D/setFalloff.mdx
+++ b/src/content/reference/en/p5.Panner3D/setFalloff.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7838
title: setFalloff
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Part/addPhrase.mdx b/src/content/reference/en/p5.Part/addPhrase.mdx
index 53d4a881ad..deba40110e 100644
--- a/src/content/reference/en/p5.Part/addPhrase.mdx
+++ b/src/content/reference/en/p5.Part/addPhrase.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9379
title: addPhrase
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Part/getBPM.mdx b/src/content/reference/en/p5.Part/getBPM.mdx
index b1f0371e43..048995629c 100644
--- a/src/content/reference/en/p5.Part/getBPM.mdx
+++ b/src/content/reference/en/p5.Part/getBPM.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9278
title: getBPM
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Part/getPhrase.mdx b/src/content/reference/en/p5.Part/getPhrase.mdx
index f371817004..30edef168d 100644
--- a/src/content/reference/en/p5.Part/getPhrase.mdx
+++ b/src/content/reference/en/p5.Part/getPhrase.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9424
title: getPhrase
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Part/loop.mdx b/src/content/reference/en/p5.Part/loop.mdx
index cb3aea8214..951e744f9b 100644
--- a/src/content/reference/en/p5.Part/loop.mdx
+++ b/src/content/reference/en/p5.Part/loop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9311
title: loop
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Part/noLoop.mdx b/src/content/reference/en/p5.Part/noLoop.mdx
index 9ffeb7fe63..eccc0d3b8a 100644
--- a/src/content/reference/en/p5.Part/noLoop.mdx
+++ b/src/content/reference/en/p5.Part/noLoop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9333
title: noLoop
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Part/onStep.mdx b/src/content/reference/en/p5.Part/onStep.mdx
index 0cb9639606..4c00e5ca25 100644
--- a/src/content/reference/en/p5.Part/onStep.mdx
+++ b/src/content/reference/en/p5.Part/onStep.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9473
title: onStep
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Part/pause.mdx b/src/content/reference/en/p5.Part/pause.mdx
index 63b38035d1..50d86ef426 100644
--- a/src/content/reference/en/p5.Part/pause.mdx
+++ b/src/content/reference/en/p5.Part/pause.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9363
title: pause
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Part/removePhrase.mdx b/src/content/reference/en/p5.Part/removePhrase.mdx
index 651a9b489f..867e62f948 100644
--- a/src/content/reference/en/p5.Part/removePhrase.mdx
+++ b/src/content/reference/en/p5.Part/removePhrase.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9406
title: removePhrase
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Part/replaceSequence.mdx b/src/content/reference/en/p5.Part/replaceSequence.mdx
index 59d924b50f..c960a961b8 100644
--- a/src/content/reference/en/p5.Part/replaceSequence.mdx
+++ b/src/content/reference/en/p5.Part/replaceSequence.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9442
title: replaceSequence
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Part/setBPM.mdx b/src/content/reference/en/p5.Part/setBPM.mdx
index e4f44a44bf..dd5c49813a 100644
--- a/src/content/reference/en/p5.Part/setBPM.mdx
+++ b/src/content/reference/en/p5.Part/setBPM.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9263
title: setBPM
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Part/start.mdx b/src/content/reference/en/p5.Part/start.mdx
index bb3b76967b..18944bc747 100644
--- a/src/content/reference/en/p5.Part/start.mdx
+++ b/src/content/reference/en/p5.Part/start.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9291
title: start
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Part/stop.mdx b/src/content/reference/en/p5.Part/stop.mdx
index 04f9503c17..54b650f194 100644
--- a/src/content/reference/en/p5.Part/stop.mdx
+++ b/src/content/reference/en/p5.Part/stop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9349
title: stop
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.PeakDetect/isDetected.mdx b/src/content/reference/en/p5.PeakDetect/isDetected.mdx
index bd6868e4c1..0cce816520 100644
--- a/src/content/reference/en/p5.PeakDetect/isDetected.mdx
+++ b/src/content/reference/en/p5.PeakDetect/isDetected.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10419
title: isDetected
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.PeakDetect/onPeak.mdx b/src/content/reference/en/p5.PeakDetect/onPeak.mdx
index 150222edce..aa93ee4b8e 100644
--- a/src/content/reference/en/p5.PeakDetect/onPeak.mdx
+++ b/src/content/reference/en/p5.PeakDetect/onPeak.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10470
title: onPeak
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.PeakDetect/update.mdx b/src/content/reference/en/p5.PeakDetect/update.mdx
index 67a223a87e..7c120bb60a 100644
--- a/src/content/reference/en/p5.PeakDetect/update.mdx
+++ b/src/content/reference/en/p5.PeakDetect/update.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10432
title: update
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Phrase/sequence.mdx b/src/content/reference/en/p5.Phrase/sequence.mdx
index 392280b61b..f5f8916c5a 100644
--- a/src/content/reference/en/p5.Phrase/sequence.mdx
+++ b/src/content/reference/en/p5.Phrase/sequence.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9173
title: sequence
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.PolySynth/AudioVoice.mdx b/src/content/reference/en/p5.PolySynth/AudioVoice.mdx
index 654db15319..3930d84f78 100644
--- a/src/content/reference/en/p5.PolySynth/AudioVoice.mdx
+++ b/src/content/reference/en/p5.PolySynth/AudioVoice.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11761
title: AudioVoice
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.PolySynth/connect.mdx b/src/content/reference/en/p5.PolySynth/connect.mdx
index 23e54964a9..36d39e24ee 100644
--- a/src/content/reference/en/p5.PolySynth/connect.mdx
+++ b/src/content/reference/en/p5.PolySynth/connect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L12105
title: connect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.PolySynth/disconnect.mdx b/src/content/reference/en/p5.PolySynth/disconnect.mdx
index 241eea5450..20a2a4780c 100644
--- a/src/content/reference/en/p5.PolySynth/disconnect.mdx
+++ b/src/content/reference/en/p5.PolySynth/disconnect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L12119
title: disconnect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.PolySynth/dispose.mdx b/src/content/reference/en/p5.PolySynth/dispose.mdx
index b688442e27..1036b960c3 100644
--- a/src/content/reference/en/p5.PolySynth/dispose.mdx
+++ b/src/content/reference/en/p5.PolySynth/dispose.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L12133
title: dispose
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.PolySynth/noteADSR.mdx b/src/content/reference/en/p5.PolySynth/noteADSR.mdx
index f5ff960e03..50a7c670b2 100644
--- a/src/content/reference/en/p5.PolySynth/noteADSR.mdx
+++ b/src/content/reference/en/p5.PolySynth/noteADSR.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11849
title: noteADSR
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.PolySynth/noteAttack.mdx b/src/content/reference/en/p5.PolySynth/noteAttack.mdx
index 36bc00bb4b..8aee2bb203 100644
--- a/src/content/reference/en/p5.PolySynth/noteAttack.mdx
+++ b/src/content/reference/en/p5.PolySynth/noteAttack.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11909
title: noteAttack
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.PolySynth/noteRelease.mdx b/src/content/reference/en/p5.PolySynth/noteRelease.mdx
index f57fbcd8d5..346f1891b3 100644
--- a/src/content/reference/en/p5.PolySynth/noteRelease.mdx
+++ b/src/content/reference/en/p5.PolySynth/noteRelease.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L12021
title: noteRelease
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.PolySynth/notes.mdx b/src/content/reference/en/p5.PolySynth/notes.mdx
index e7caea9fe7..30251163a4 100644
--- a/src/content/reference/en/p5.PolySynth/notes.mdx
+++ b/src/content/reference/en/p5.PolySynth/notes.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11742
title: notes
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.PolySynth/play.mdx b/src/content/reference/en/p5.PolySynth/play.mdx
index 5de9536788..08594709d1 100644
--- a/src/content/reference/en/p5.PolySynth/play.mdx
+++ b/src/content/reference/en/p5.PolySynth/play.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11800
title: play
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.PolySynth/polyvalue.mdx b/src/content/reference/en/p5.PolySynth/polyvalue.mdx
index 88979a937c..151f8a1b5f 100644
--- a/src/content/reference/en/p5.PolySynth/polyvalue.mdx
+++ b/src/content/reference/en/p5.PolySynth/polyvalue.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11755
title: polyvalue
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.PolySynth/setADSR.mdx b/src/content/reference/en/p5.PolySynth/setADSR.mdx
index 66487da1a4..04112b2a24 100644
--- a/src/content/reference/en/p5.PolySynth/setADSR.mdx
+++ b/src/content/reference/en/p5.PolySynth/setADSR.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11881
title: setADSR
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.PrintWriter/clear.mdx b/src/content/reference/en/p5.PrintWriter/clear.mdx
index 7f5904b4d9..3fb15af46f 100644
--- a/src/content/reference/en/p5.PrintWriter/clear.mdx
+++ b/src/content/reference/en/p5.PrintWriter/clear.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L1722
title: clear
module: IO
submodule: Output
diff --git a/src/content/reference/en/p5.PrintWriter/close.mdx b/src/content/reference/en/p5.PrintWriter/close.mdx
index c319c91b41..9b781408cf 100644
--- a/src/content/reference/en/p5.PrintWriter/close.mdx
+++ b/src/content/reference/en/p5.PrintWriter/close.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L1767
title: close
module: IO
submodule: Output
diff --git a/src/content/reference/en/p5.PrintWriter/print.mdx b/src/content/reference/en/p5.PrintWriter/print.mdx
index 32a0c1f49a..fcea0c9da0 100644
--- a/src/content/reference/en/p5.PrintWriter/print.mdx
+++ b/src/content/reference/en/p5.PrintWriter/print.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L1672
title: print
module: IO
submodule: Output
diff --git a/src/content/reference/en/p5.PrintWriter/write.mdx b/src/content/reference/en/p5.PrintWriter/write.mdx
index 9853cc7854..0b435ec4e6 100644
--- a/src/content/reference/en/p5.PrintWriter/write.mdx
+++ b/src/content/reference/en/p5.PrintWriter/write.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L1622
title: write
module: IO
submodule: Output
diff --git a/src/content/reference/en/p5.Pulse/width.mdx b/src/content/reference/en/p5.Pulse/width.mdx
index 49e856cf91..9ab16aecba 100644
--- a/src/content/reference/en/p5.Pulse/width.mdx
+++ b/src/content/reference/en/p5.Pulse/width.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L5871
title: width
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Reverb/amp.mdx b/src/content/reference/en/p5.Reverb/amp.mdx
index dd219962b8..ac12984be6 100644
--- a/src/content/reference/en/p5.Reverb/amp.mdx
+++ b/src/content/reference/en/p5.Reverb/amp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8482
title: amp
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Reverb/connect.mdx b/src/content/reference/en/p5.Reverb/connect.mdx
index b414875178..adb9928d1b 100644
--- a/src/content/reference/en/p5.Reverb/connect.mdx
+++ b/src/content/reference/en/p5.Reverb/connect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8493
title: connect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Reverb/disconnect.mdx b/src/content/reference/en/p5.Reverb/disconnect.mdx
index 35b8c66097..be5009a94b 100644
--- a/src/content/reference/en/p5.Reverb/disconnect.mdx
+++ b/src/content/reference/en/p5.Reverb/disconnect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8501
title: disconnect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Reverb/process.mdx b/src/content/reference/en/p5.Reverb/process.mdx
index afd1c38a78..b574439d4f 100644
--- a/src/content/reference/en/p5.Reverb/process.mdx
+++ b/src/content/reference/en/p5.Reverb/process.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8409
title: process
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Reverb/set.mdx b/src/content/reference/en/p5.Reverb/set.mdx
index f60e63e903..25047ac92e 100644
--- a/src/content/reference/en/p5.Reverb/set.mdx
+++ b/src/content/reference/en/p5.Reverb/set.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8446
title: set
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Score/loop.mdx b/src/content/reference/en/p5.Score/loop.mdx
index 992e893dc6..9698ecba2a 100644
--- a/src/content/reference/en/p5.Score/loop.mdx
+++ b/src/content/reference/en/p5.Score/loop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9581
title: loop
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Score/noLoop.mdx b/src/content/reference/en/p5.Score/noLoop.mdx
index 9c85c6f41b..bc7de95055 100644
--- a/src/content/reference/en/p5.Score/noLoop.mdx
+++ b/src/content/reference/en/p5.Score/noLoop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9594
title: noLoop
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Score/pause.mdx b/src/content/reference/en/p5.Score/pause.mdx
index f5e26c836a..b15da587ec 100644
--- a/src/content/reference/en/p5.Score/pause.mdx
+++ b/src/content/reference/en/p5.Score/pause.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9569
title: pause
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Score/setBPM.mdx b/src/content/reference/en/p5.Score/setBPM.mdx
index f4e843899b..eaafd21423 100644
--- a/src/content/reference/en/p5.Score/setBPM.mdx
+++ b/src/content/reference/en/p5.Score/setBPM.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9628
title: setBPM
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Score/start.mdx b/src/content/reference/en/p5.Score/start.mdx
index 7ebda41e62..071a6438fb 100644
--- a/src/content/reference/en/p5.Score/start.mdx
+++ b/src/content/reference/en/p5.Score/start.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9542
title: start
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Score/stop.mdx b/src/content/reference/en/p5.Score/stop.mdx
index bf449bcda1..77971862b8 100644
--- a/src/content/reference/en/p5.Score/stop.mdx
+++ b/src/content/reference/en/p5.Score/stop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9555
title: stop
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Shader/copyToContext.mdx b/src/content/reference/en/p5.Shader/copyToContext.mdx
index c87c008ce2..1fd551da8e 100644
--- a/src/content/reference/en/p5.Shader/copyToContext.mdx
+++ b/src/content/reference/en/p5.Shader/copyToContext.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Shader.js#L574
title: copyToContext
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5.Shader/inspectHooks.mdx b/src/content/reference/en/p5.Shader/inspectHooks.mdx
index 4c60233b57..ac227aa2e5 100644
--- a/src/content/reference/en/p5.Shader/inspectHooks.mdx
+++ b/src/content/reference/en/p5.Shader/inspectHooks.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Shader.js#L259
title: inspectHooks
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5.Shader/modify.mdx b/src/content/reference/en/p5.Shader/modify.mdx
index ac666c7dc5..83e0e928ea 100644
--- a/src/content/reference/en/p5.Shader/modify.mdx
+++ b/src/content/reference/en/p5.Shader/modify.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Shader.js#L340
title: modify
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5.Shader/setUniform.mdx b/src/content/reference/en/p5.Shader/setUniform.mdx
index b0dd26032e..84e34caa55 100644
--- a/src/content/reference/en/p5.Shader/setUniform.mdx
+++ b/src/content/reference/en/p5.Shader/setUniform.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Shader.js#L990
title: setUniform
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5.SoundFile/addCue.mdx b/src/content/reference/en/p5.SoundFile/addCue.mdx
index 3bd58f0a97..f9bb39305b 100644
--- a/src/content/reference/en/p5.SoundFile/addCue.mdx
+++ b/src/content/reference/en/p5.SoundFile/addCue.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2719
title: addCue
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/channels.mdx b/src/content/reference/en/p5.SoundFile/channels.mdx
index a771a5c8ca..143b09e9d9 100644
--- a/src/content/reference/en/p5.SoundFile/channels.mdx
+++ b/src/content/reference/en/p5.SoundFile/channels.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2340
title: channels
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/clearCues.mdx b/src/content/reference/en/p5.SoundFile/clearCues.mdx
index cabe21da18..f88985c242 100644
--- a/src/content/reference/en/p5.SoundFile/clearCues.mdx
+++ b/src/content/reference/en/p5.SoundFile/clearCues.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2817
title: clearCues
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/connect.mdx b/src/content/reference/en/p5.SoundFile/connect.mdx
index bdddc34f94..318777f8f6 100644
--- a/src/content/reference/en/p5.SoundFile/connect.mdx
+++ b/src/content/reference/en/p5.SoundFile/connect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2565
title: connect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/currentTime.mdx b/src/content/reference/en/p5.SoundFile/currentTime.mdx
index 422cd52ba3..0b07f16941 100644
--- a/src/content/reference/en/p5.SoundFile/currentTime.mdx
+++ b/src/content/reference/en/p5.SoundFile/currentTime.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2293
title: currentTime
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/disconnect.mdx b/src/content/reference/en/p5.SoundFile/disconnect.mdx
index 4cdecb2ed3..d555c55e6a 100644
--- a/src/content/reference/en/p5.SoundFile/disconnect.mdx
+++ b/src/content/reference/en/p5.SoundFile/disconnect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2590
title: disconnect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/duration.mdx b/src/content/reference/en/p5.SoundFile/duration.mdx
index 9c26242d40..4cf8da988d 100644
--- a/src/content/reference/en/p5.SoundFile/duration.mdx
+++ b/src/content/reference/en/p5.SoundFile/duration.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2276
title: duration
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/frames.mdx b/src/content/reference/en/p5.SoundFile/frames.mdx
index 1ea17aaee5..5e54a5e469 100644
--- a/src/content/reference/en/p5.SoundFile/frames.mdx
+++ b/src/content/reference/en/p5.SoundFile/frames.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2367
title: frames
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/getBlob.mdx b/src/content/reference/en/p5.SoundFile/getBlob.mdx
index 9a083f578a..a9eb2552d0 100644
--- a/src/content/reference/en/p5.SoundFile/getBlob.mdx
+++ b/src/content/reference/en/p5.SoundFile/getBlob.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2882
title: getBlob
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/getPan.mdx b/src/content/reference/en/p5.SoundFile/getPan.mdx
index e6f2b25294..387b26ced3 100644
--- a/src/content/reference/en/p5.SoundFile/getPan.mdx
+++ b/src/content/reference/en/p5.SoundFile/getPan.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2131
title: getPan
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/getPeaks.mdx b/src/content/reference/en/p5.SoundFile/getPeaks.mdx
index 97958d5c86..27a373e2ef 100644
--- a/src/content/reference/en/p5.SoundFile/getPeaks.mdx
+++ b/src/content/reference/en/p5.SoundFile/getPeaks.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2381
title: getPeaks
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/isLoaded.mdx b/src/content/reference/en/p5.SoundFile/isLoaded.mdx
index 3199e284c5..0d76563fea 100644
--- a/src/content/reference/en/p5.SoundFile/isLoaded.mdx
+++ b/src/content/reference/en/p5.SoundFile/isLoaded.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L1662
title: isLoaded
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/isLooping.mdx b/src/content/reference/en/p5.SoundFile/isLooping.mdx
index 5fb89cadb4..9042422ea7 100644
--- a/src/content/reference/en/p5.SoundFile/isLooping.mdx
+++ b/src/content/reference/en/p5.SoundFile/isLooping.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L1976
title: isLooping
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/isPaused.mdx b/src/content/reference/en/p5.SoundFile/isPaused.mdx
index 87730bf520..81edfbec7a 100644
--- a/src/content/reference/en/p5.SoundFile/isPaused.mdx
+++ b/src/content/reference/en/p5.SoundFile/isPaused.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2011
title: isPaused
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/isPlaying.mdx b/src/content/reference/en/p5.SoundFile/isPlaying.mdx
index 27e3dccc40..d871a2b258 100644
--- a/src/content/reference/en/p5.SoundFile/isPlaying.mdx
+++ b/src/content/reference/en/p5.SoundFile/isPlaying.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L1997
title: isPlaying
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/jump.mdx b/src/content/reference/en/p5.SoundFile/jump.mdx
index 9fe1f16781..ec12c43721 100644
--- a/src/content/reference/en/p5.SoundFile/jump.mdx
+++ b/src/content/reference/en/p5.SoundFile/jump.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2308
title: jump
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/loop.mdx b/src/content/reference/en/p5.SoundFile/loop.mdx
index 5874de795c..d9a69a759e 100644
--- a/src/content/reference/en/p5.SoundFile/loop.mdx
+++ b/src/content/reference/en/p5.SoundFile/loop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L1905
title: loop
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/onended.mdx b/src/content/reference/en/p5.SoundFile/onended.mdx
index a2a7a23fa9..c414823916 100644
--- a/src/content/reference/en/p5.SoundFile/onended.mdx
+++ b/src/content/reference/en/p5.SoundFile/onended.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2497
title: onended
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/pan.mdx b/src/content/reference/en/p5.SoundFile/pan.mdx
index ec7978f08c..ba107fa678 100644
--- a/src/content/reference/en/p5.SoundFile/pan.mdx
+++ b/src/content/reference/en/p5.SoundFile/pan.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2087
title: pan
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/pause.mdx b/src/content/reference/en/p5.SoundFile/pause.mdx
index ab9fa5f577..d5247c2b24 100644
--- a/src/content/reference/en/p5.SoundFile/pause.mdx
+++ b/src/content/reference/en/p5.SoundFile/pause.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L1847
title: pause
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/play.mdx b/src/content/reference/en/p5.SoundFile/play.mdx
index 15ba14875f..7f7e43e4ee 100644
--- a/src/content/reference/en/p5.SoundFile/play.mdx
+++ b/src/content/reference/en/p5.SoundFile/play.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L1679
title: play
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/playMode.mdx b/src/content/reference/en/p5.SoundFile/playMode.mdx
index 9b0ece06ae..d9c28c847c 100644
--- a/src/content/reference/en/p5.SoundFile/playMode.mdx
+++ b/src/content/reference/en/p5.SoundFile/playMode.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L1787
title: playMode
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/rate.mdx b/src/content/reference/en/p5.SoundFile/rate.mdx
index 86c5553a44..055f6764da 100644
--- a/src/content/reference/en/p5.SoundFile/rate.mdx
+++ b/src/content/reference/en/p5.SoundFile/rate.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2146
title: rate
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/removeCue.mdx b/src/content/reference/en/p5.SoundFile/removeCue.mdx
index 098a52ebc2..57ac27735c 100644
--- a/src/content/reference/en/p5.SoundFile/removeCue.mdx
+++ b/src/content/reference/en/p5.SoundFile/removeCue.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2790
title: removeCue
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/reverseBuffer.mdx b/src/content/reference/en/p5.SoundFile/reverseBuffer.mdx
index 1a08f11c07..841e1bbdf2 100644
--- a/src/content/reference/en/p5.SoundFile/reverseBuffer.mdx
+++ b/src/content/reference/en/p5.SoundFile/reverseBuffer.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2443
title: reverseBuffer
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/sampleRate.mdx b/src/content/reference/en/p5.SoundFile/sampleRate.mdx
index 07dab7c3af..27b4afa253 100644
--- a/src/content/reference/en/p5.SoundFile/sampleRate.mdx
+++ b/src/content/reference/en/p5.SoundFile/sampleRate.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2354
title: sampleRate
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/save.mdx b/src/content/reference/en/p5.SoundFile/save.mdx
index 9ca4f3a2cc..b324e8ad83 100644
--- a/src/content/reference/en/p5.SoundFile/save.mdx
+++ b/src/content/reference/en/p5.SoundFile/save.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2850
title: save
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/setBuffer.mdx b/src/content/reference/en/p5.SoundFile/setBuffer.mdx
index 4feaa4e0fa..e78e9f901f 100644
--- a/src/content/reference/en/p5.SoundFile/setBuffer.mdx
+++ b/src/content/reference/en/p5.SoundFile/setBuffer.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2630
title: setBuffer
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/setLoop.mdx b/src/content/reference/en/p5.SoundFile/setLoop.mdx
index af55e6a639..41eec25492 100644
--- a/src/content/reference/en/p5.SoundFile/setLoop.mdx
+++ b/src/content/reference/en/p5.SoundFile/setLoop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L1950
title: setLoop
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/setPath.mdx b/src/content/reference/en/p5.SoundFile/setPath.mdx
index 77449f49bb..44bc96085e 100644
--- a/src/content/reference/en/p5.SoundFile/setPath.mdx
+++ b/src/content/reference/en/p5.SoundFile/setPath.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2612
title: setPath
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/setVolume.mdx b/src/content/reference/en/p5.SoundFile/setVolume.mdx
index 398a751946..c45ab8bb12 100644
--- a/src/content/reference/en/p5.SoundFile/setVolume.mdx
+++ b/src/content/reference/en/p5.SoundFile/setVolume.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2239
title: setVolume
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundFile/stop.mdx b/src/content/reference/en/p5.SoundFile/stop.mdx
index e7cd522978..84e869ce9f 100644
--- a/src/content/reference/en/p5.SoundFile/stop.mdx
+++ b/src/content/reference/en/p5.SoundFile/stop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2025
title: stop
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundLoop/bpm.mdx b/src/content/reference/en/p5.SoundLoop/bpm.mdx
index 92ef5af192..80773a4fa9 100644
--- a/src/content/reference/en/p5.SoundLoop/bpm.mdx
+++ b/src/content/reference/en/p5.SoundLoop/bpm.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9729
title: bpm
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundLoop/interval.mdx b/src/content/reference/en/p5.SoundLoop/interval.mdx
index 8050d46206..a683529a23 100644
--- a/src/content/reference/en/p5.SoundLoop/interval.mdx
+++ b/src/content/reference/en/p5.SoundLoop/interval.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9770
title: interval
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundLoop/iterations.mdx b/src/content/reference/en/p5.SoundLoop/iterations.mdx
index 760838e19f..5b36d6a6e5 100644
--- a/src/content/reference/en/p5.SoundLoop/iterations.mdx
+++ b/src/content/reference/en/p5.SoundLoop/iterations.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9787
title: iterations
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundLoop/maxIterations.mdx b/src/content/reference/en/p5.SoundLoop/maxIterations.mdx
index ea95ae0865..b715592456 100644
--- a/src/content/reference/en/p5.SoundLoop/maxIterations.mdx
+++ b/src/content/reference/en/p5.SoundLoop/maxIterations.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9816
title: maxIterations
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundLoop/musicalTimeMode.mdx b/src/content/reference/en/p5.SoundLoop/musicalTimeMode.mdx
index 7ba91c2a01..b1e3c8c5ff 100644
--- a/src/content/reference/en/p5.SoundLoop/musicalTimeMode.mdx
+++ b/src/content/reference/en/p5.SoundLoop/musicalTimeMode.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9800
title: musicalTimeMode
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundLoop/pause.mdx b/src/content/reference/en/p5.SoundLoop/pause.mdx
index 0a0e8c920b..2dc263ea97 100644
--- a/src/content/reference/en/p5.SoundLoop/pause.mdx
+++ b/src/content/reference/en/p5.SoundLoop/pause.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9878
title: pause
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundLoop/start.mdx b/src/content/reference/en/p5.SoundLoop/start.mdx
index d37628a424..232cf11eff 100644
--- a/src/content/reference/en/p5.SoundLoop/start.mdx
+++ b/src/content/reference/en/p5.SoundLoop/start.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9841
title: start
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundLoop/stop.mdx b/src/content/reference/en/p5.SoundLoop/stop.mdx
index 9814bb55a3..455915d915 100644
--- a/src/content/reference/en/p5.SoundLoop/stop.mdx
+++ b/src/content/reference/en/p5.SoundLoop/stop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9860
title: stop
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundLoop/syncedStart.mdx b/src/content/reference/en/p5.SoundLoop/syncedStart.mdx
index b1eecee86e..e58427cd48 100644
--- a/src/content/reference/en/p5.SoundLoop/syncedStart.mdx
+++ b/src/content/reference/en/p5.SoundLoop/syncedStart.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9896
title: syncedStart
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundLoop/timeSignature.mdx b/src/content/reference/en/p5.SoundLoop/timeSignature.mdx
index 1c5b2283d3..e02eab1439 100644
--- a/src/content/reference/en/p5.SoundLoop/timeSignature.mdx
+++ b/src/content/reference/en/p5.SoundLoop/timeSignature.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9750
title: timeSignature
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundRecorder/record.mdx b/src/content/reference/en/p5.SoundRecorder/record.mdx
index 56d0355790..37d8fd3198 100644
--- a/src/content/reference/en/p5.SoundRecorder/record.mdx
+++ b/src/content/reference/en/p5.SoundRecorder/record.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10703
title: record
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundRecorder/setInput.mdx b/src/content/reference/en/p5.SoundRecorder/setInput.mdx
index f8c54a3d63..dc1d3f4b1d 100644
--- a/src/content/reference/en/p5.SoundRecorder/setInput.mdx
+++ b/src/content/reference/en/p5.SoundRecorder/setInput.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10676
title: setInput
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.SoundRecorder/stop.mdx b/src/content/reference/en/p5.SoundRecorder/stop.mdx
index 3e7f8e25b1..1e883cfb9b 100644
--- a/src/content/reference/en/p5.SoundRecorder/stop.mdx
+++ b/src/content/reference/en/p5.SoundRecorder/stop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10739
title: stop
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.Table/addColumn.mdx b/src/content/reference/en/p5.Table/addColumn.mdx
index b296ccb6af..83cd6731b4 100644
--- a/src/content/reference/en/p5.Table/addColumn.mdx
+++ b/src/content/reference/en/p5.Table/addColumn.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L631
title: addColumn
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/addRow.mdx b/src/content/reference/en/p5.Table/addRow.mdx
index b04b28dd5a..81aa233cc6 100644
--- a/src/content/reference/en/p5.Table/addRow.mdx
+++ b/src/content/reference/en/p5.Table/addRow.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L90
title: addRow
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/clearRows.mdx b/src/content/reference/en/p5.Table/clearRows.mdx
index 7e1fd8f5a3..e7985e036a 100644
--- a/src/content/reference/en/p5.Table/clearRows.mdx
+++ b/src/content/reference/en/p5.Table/clearRows.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L592
title: clearRows
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/columns.mdx b/src/content/reference/en/p5.Table/columns.mdx
index fc4d501271..23b7c1b86c 100644
--- a/src/content/reference/en/p5.Table/columns.mdx
+++ b/src/content/reference/en/p5.Table/columns.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L43
title: columns
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/findRow.mdx b/src/content/reference/en/p5.Table/findRow.mdx
index 83bd28757c..7b0ffea577 100644
--- a/src/content/reference/en/p5.Table/findRow.mdx
+++ b/src/content/reference/en/p5.Table/findRow.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L289
title: findRow
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/findRows.mdx b/src/content/reference/en/p5.Table/findRows.mdx
index c62f250adb..64c5c0346c 100644
--- a/src/content/reference/en/p5.Table/findRows.mdx
+++ b/src/content/reference/en/p5.Table/findRows.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L351
title: findRows
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/get.mdx b/src/content/reference/en/p5.Table/get.mdx
index 6995529f73..20a723a6d1 100644
--- a/src/content/reference/en/p5.Table/get.mdx
+++ b/src/content/reference/en/p5.Table/get.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L1087
title: get
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/getArray.mdx b/src/content/reference/en/p5.Table/getArray.mdx
index 2ed4cdd323..e649e22e75 100644
--- a/src/content/reference/en/p5.Table/getArray.mdx
+++ b/src/content/reference/en/p5.Table/getArray.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L1285
title: getArray
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/getColumn.mdx b/src/content/reference/en/p5.Table/getColumn.mdx
index 26c87f0c7f..f6cebffdf5 100644
--- a/src/content/reference/en/p5.Table/getColumn.mdx
+++ b/src/content/reference/en/p5.Table/getColumn.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L542
title: getColumn
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/getColumnCount.mdx b/src/content/reference/en/p5.Table/getColumnCount.mdx
index c69db04a69..6f1314cfd2 100644
--- a/src/content/reference/en/p5.Table/getColumnCount.mdx
+++ b/src/content/reference/en/p5.Table/getColumnCount.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L680
title: getColumnCount
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/getNum.mdx b/src/content/reference/en/p5.Table/getNum.mdx
index 9b1560b907..77d7aaf096 100644
--- a/src/content/reference/en/p5.Table/getNum.mdx
+++ b/src/content/reference/en/p5.Table/getNum.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L1131
title: getNum
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/getObject.mdx b/src/content/reference/en/p5.Table/getObject.mdx
index 6e73d5e2ae..e6cc840697 100644
--- a/src/content/reference/en/p5.Table/getObject.mdx
+++ b/src/content/reference/en/p5.Table/getObject.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L1223
title: getObject
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/getRow.mdx b/src/content/reference/en/p5.Table/getRow.mdx
index 18ea56fb00..61e661c541 100644
--- a/src/content/reference/en/p5.Table/getRow.mdx
+++ b/src/content/reference/en/p5.Table/getRow.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L198
title: getRow
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/getRowCount.mdx b/src/content/reference/en/p5.Table/getRowCount.mdx
index 81bd3955a0..98d5b531f8 100644
--- a/src/content/reference/en/p5.Table/getRowCount.mdx
+++ b/src/content/reference/en/p5.Table/getRowCount.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L716
title: getRowCount
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/getRows.mdx b/src/content/reference/en/p5.Table/getRows.mdx
index 58e7cfd126..1570c50242 100644
--- a/src/content/reference/en/p5.Table/getRows.mdx
+++ b/src/content/reference/en/p5.Table/getRows.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L242
title: getRows
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/getString.mdx b/src/content/reference/en/p5.Table/getString.mdx
index beea34820b..ff5202ce8f 100644
--- a/src/content/reference/en/p5.Table/getString.mdx
+++ b/src/content/reference/en/p5.Table/getString.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L1173
title: getString
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/matchRow.mdx b/src/content/reference/en/p5.Table/matchRow.mdx
index c1477fd649..ba76925d73 100644
--- a/src/content/reference/en/p5.Table/matchRow.mdx
+++ b/src/content/reference/en/p5.Table/matchRow.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L417
title: matchRow
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/matchRows.mdx b/src/content/reference/en/p5.Table/matchRows.mdx
index fae3c2372c..6c2b27affc 100644
--- a/src/content/reference/en/p5.Table/matchRows.mdx
+++ b/src/content/reference/en/p5.Table/matchRows.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L475
title: matchRows
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/removeColumn.mdx b/src/content/reference/en/p5.Table/removeColumn.mdx
index 591a6f546a..1772879ba7 100644
--- a/src/content/reference/en/p5.Table/removeColumn.mdx
+++ b/src/content/reference/en/p5.Table/removeColumn.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L888
title: removeColumn
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/removeRow.mdx b/src/content/reference/en/p5.Table/removeRow.mdx
index 2e19e8d3bc..1f0c9c1bce 100644
--- a/src/content/reference/en/p5.Table/removeRow.mdx
+++ b/src/content/reference/en/p5.Table/removeRow.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L152
title: removeRow
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/removeTokens.mdx b/src/content/reference/en/p5.Table/removeTokens.mdx
index 5af655011c..52edc75908 100644
--- a/src/content/reference/en/p5.Table/removeTokens.mdx
+++ b/src/content/reference/en/p5.Table/removeTokens.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L752
title: removeTokens
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/rows.mdx b/src/content/reference/en/p5.Table/rows.mdx
index 127ed88cfa..d08a15562c 100644
--- a/src/content/reference/en/p5.Table/rows.mdx
+++ b/src/content/reference/en/p5.Table/rows.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L80
title: rows
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/set.mdx b/src/content/reference/en/p5.Table/set.mdx
index bcc01a5657..b77493c8d1 100644
--- a/src/content/reference/en/p5.Table/set.mdx
+++ b/src/content/reference/en/p5.Table/set.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L950
title: set
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/setNum.mdx b/src/content/reference/en/p5.Table/setNum.mdx
index a553973ca2..ea151e7068 100644
--- a/src/content/reference/en/p5.Table/setNum.mdx
+++ b/src/content/reference/en/p5.Table/setNum.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L998
title: setNum
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/setString.mdx b/src/content/reference/en/p5.Table/setString.mdx
index 92b93cb4c1..2a70d9f978 100644
--- a/src/content/reference/en/p5.Table/setString.mdx
+++ b/src/content/reference/en/p5.Table/setString.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L1043
title: setString
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.Table/trim.mdx b/src/content/reference/en/p5.Table/trim.mdx
index a7d3a77f3d..d459738881 100644
--- a/src/content/reference/en/p5.Table/trim.mdx
+++ b/src/content/reference/en/p5.Table/trim.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L824
title: trim
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.TableRow/get.mdx b/src/content/reference/en/p5.TableRow/get.mdx
index 5966abe2ec..fa5291ff83 100644
--- a/src/content/reference/en/p5.TableRow/get.mdx
+++ b/src/content/reference/en/p5.TableRow/get.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.TableRow.js#L184
title: get
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.TableRow/getNum.mdx b/src/content/reference/en/p5.TableRow/getNum.mdx
index 136735dac5..019103430f 100644
--- a/src/content/reference/en/p5.TableRow/getNum.mdx
+++ b/src/content/reference/en/p5.TableRow/getNum.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.TableRow.js#L231
title: getNum
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.TableRow/getString.mdx b/src/content/reference/en/p5.TableRow/getString.mdx
index 8dd7db7b39..b034ef1b97 100644
--- a/src/content/reference/en/p5.TableRow/getString.mdx
+++ b/src/content/reference/en/p5.TableRow/getString.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.TableRow.js#L285
title: getString
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.TableRow/set.mdx b/src/content/reference/en/p5.TableRow/set.mdx
index 02a7c29440..1da7c44265 100644
--- a/src/content/reference/en/p5.TableRow/set.mdx
+++ b/src/content/reference/en/p5.TableRow/set.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.TableRow.js#L36
title: set
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.TableRow/setNum.mdx b/src/content/reference/en/p5.TableRow/setNum.mdx
index c20e6b440c..78f66b4f40 100644
--- a/src/content/reference/en/p5.TableRow/setNum.mdx
+++ b/src/content/reference/en/p5.TableRow/setNum.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.TableRow.js#L97
title: setNum
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.TableRow/setString.mdx b/src/content/reference/en/p5.TableRow/setString.mdx
index 74b0a9fddc..d4fa4e7ea9 100644
--- a/src/content/reference/en/p5.TableRow/setString.mdx
+++ b/src/content/reference/en/p5.TableRow/setString.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.TableRow.js#L140
title: setString
module: IO
submodule: Table
diff --git a/src/content/reference/en/p5.TypedDict/clear.mdx b/src/content/reference/en/p5.TypedDict/clear.mdx
index 0d55313f04..837420183a 100644
--- a/src/content/reference/en/p5.TypedDict/clear.mdx
+++ b/src/content/reference/en/p5.TypedDict/clear.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L245
title: clear
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.TypedDict/create.mdx b/src/content/reference/en/p5.TypedDict/create.mdx
index 374fae9fc5..6d8f88f5f8 100644
--- a/src/content/reference/en/p5.TypedDict/create.mdx
+++ b/src/content/reference/en/p5.TypedDict/create.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L209
title: create
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.TypedDict/get.mdx b/src/content/reference/en/p5.TypedDict/get.mdx
index eeb27d1873..b03385285c 100644
--- a/src/content/reference/en/p5.TypedDict/get.mdx
+++ b/src/content/reference/en/p5.TypedDict/get.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L145
title: get
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.TypedDict/hasKey.mdx b/src/content/reference/en/p5.TypedDict/hasKey.mdx
index dd6faedb24..310f21fa4d 100644
--- a/src/content/reference/en/p5.TypedDict/hasKey.mdx
+++ b/src/content/reference/en/p5.TypedDict/hasKey.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L123
title: hasKey
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.TypedDict/print.mdx b/src/content/reference/en/p5.TypedDict/print.mdx
index 0ab9554c42..3d846dee6f 100644
--- a/src/content/reference/en/p5.TypedDict/print.mdx
+++ b/src/content/reference/en/p5.TypedDict/print.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L295
title: print
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.TypedDict/remove.mdx b/src/content/reference/en/p5.TypedDict/remove.mdx
index eeff97495f..8cfe7580a5 100644
--- a/src/content/reference/en/p5.TypedDict/remove.mdx
+++ b/src/content/reference/en/p5.TypedDict/remove.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L266
title: remove
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.TypedDict/saveJSON.mdx b/src/content/reference/en/p5.TypedDict/saveJSON.mdx
index c76018d444..b03004bdf7 100644
--- a/src/content/reference/en/p5.TypedDict/saveJSON.mdx
+++ b/src/content/reference/en/p5.TypedDict/saveJSON.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L357
title: saveJSON
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.TypedDict/saveTable.mdx b/src/content/reference/en/p5.TypedDict/saveTable.mdx
index fbe396490a..17836a3e8e 100644
--- a/src/content/reference/en/p5.TypedDict/saveTable.mdx
+++ b/src/content/reference/en/p5.TypedDict/saveTable.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L319
title: saveTable
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.TypedDict/set.mdx b/src/content/reference/en/p5.TypedDict/set.mdx
index f910dee46a..07342ca886 100644
--- a/src/content/reference/en/p5.TypedDict/set.mdx
+++ b/src/content/reference/en/p5.TypedDict/set.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L171
title: set
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.TypedDict/size.mdx b/src/content/reference/en/p5.TypedDict/size.mdx
index 5112a14060..6e3d0f1da2 100644
--- a/src/content/reference/en/p5.TypedDict/size.mdx
+++ b/src/content/reference/en/p5.TypedDict/size.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L102
title: size
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5.Vector/add.mdx b/src/content/reference/en/p5.Vector/add.mdx
index 114d052648..1bfb419e82 100644
--- a/src/content/reference/en/p5.Vector/add.mdx
+++ b/src/content/reference/en/p5.Vector/add.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L282
title: add
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/angleBetween.mdx b/src/content/reference/en/p5.Vector/angleBetween.mdx
index 2daaebe1f4..4793b190b9 100644
--- a/src/content/reference/en/p5.Vector/angleBetween.mdx
+++ b/src/content/reference/en/p5.Vector/angleBetween.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L2384
title: angleBetween
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/array.mdx b/src/content/reference/en/p5.Vector/array.mdx
index 309c4b315e..14cffa9ac1 100644
--- a/src/content/reference/en/p5.Vector/array.mdx
+++ b/src/content/reference/en/p5.Vector/array.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L2979
title: array
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/clampToZero.mdx b/src/content/reference/en/p5.Vector/clampToZero.mdx
index 37eaf83464..477f22e254 100644
--- a/src/content/reference/en/p5.Vector/clampToZero.mdx
+++ b/src/content/reference/en/p5.Vector/clampToZero.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L3892
title: clampToZero
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/copy.mdx b/src/content/reference/en/p5.Vector/copy.mdx
index 01118a7420..047d3ca35e 100644
--- a/src/content/reference/en/p5.Vector/copy.mdx
+++ b/src/content/reference/en/p5.Vector/copy.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L239
title: copy
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/cross.mdx b/src/content/reference/en/p5.Vector/cross.mdx
index b5842806d6..96dacca567 100644
--- a/src/content/reference/en/p5.Vector/cross.mdx
+++ b/src/content/reference/en/p5.Vector/cross.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L1554
title: cross
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/dist.mdx b/src/content/reference/en/p5.Vector/dist.mdx
index 493a252552..099974de76 100644
--- a/src/content/reference/en/p5.Vector/dist.mdx
+++ b/src/content/reference/en/p5.Vector/dist.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L1612
title: dist
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/div.mdx b/src/content/reference/en/p5.Vector/div.mdx
index f9ec3a3a07..a34e9f80a8 100644
--- a/src/content/reference/en/p5.Vector/div.mdx
+++ b/src/content/reference/en/p5.Vector/div.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L1065
title: div
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/dot.mdx b/src/content/reference/en/p5.Vector/dot.mdx
index dfa0c67b1f..e8297b91d1 100644
--- a/src/content/reference/en/p5.Vector/dot.mdx
+++ b/src/content/reference/en/p5.Vector/dot.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L1441
title: dot
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/equals.mdx b/src/content/reference/en/p5.Vector/equals.mdx
index d9538d2547..bbaafe8624 100644
--- a/src/content/reference/en/p5.Vector/equals.mdx
+++ b/src/content/reference/en/p5.Vector/equals.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L3001
title: equals
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/fromAngle.mdx b/src/content/reference/en/p5.Vector/fromAngle.mdx
index e6556cafae..392392d27c 100644
--- a/src/content/reference/en/p5.Vector/fromAngle.mdx
+++ b/src/content/reference/en/p5.Vector/fromAngle.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L3099
title: fromAngle
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/fromAngles.mdx b/src/content/reference/en/p5.Vector/fromAngles.mdx
index 3176eb928c..90af7ae71a 100644
--- a/src/content/reference/en/p5.Vector/fromAngles.mdx
+++ b/src/content/reference/en/p5.Vector/fromAngles.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L3174
title: fromAngles
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/heading.mdx b/src/content/reference/en/p5.Vector/heading.mdx
index 7b05c74956..fa78908d3b 100644
--- a/src/content/reference/en/p5.Vector/heading.mdx
+++ b/src/content/reference/en/p5.Vector/heading.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L2026
title: heading
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/lerp.mdx b/src/content/reference/en/p5.Vector/lerp.mdx
index 338d056e17..b38fdc6e82 100644
--- a/src/content/reference/en/p5.Vector/lerp.mdx
+++ b/src/content/reference/en/p5.Vector/lerp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L2538
title: lerp
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/limit.mdx b/src/content/reference/en/p5.Vector/limit.mdx
index f729548984..25f8572e65 100644
--- a/src/content/reference/en/p5.Vector/limit.mdx
+++ b/src/content/reference/en/p5.Vector/limit.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L1835
title: limit
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/mag.mdx b/src/content/reference/en/p5.Vector/mag.mdx
index 49723af2a9..4b29b10a11 100644
--- a/src/content/reference/en/p5.Vector/mag.mdx
+++ b/src/content/reference/en/p5.Vector/mag.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L1362
title: mag
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/magSq.mdx b/src/content/reference/en/p5.Vector/magSq.mdx
index f1559173f0..2def09fb6e 100644
--- a/src/content/reference/en/p5.Vector/magSq.mdx
+++ b/src/content/reference/en/p5.Vector/magSq.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L1402
title: magSq
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/mult.mdx b/src/content/reference/en/p5.Vector/mult.mdx
index d6f3f99fb0..8d29808f8c 100644
--- a/src/content/reference/en/p5.Vector/mult.mdx
+++ b/src/content/reference/en/p5.Vector/mult.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L785
title: mult
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/normalize.mdx b/src/content/reference/en/p5.Vector/normalize.mdx
index 9b69c85038..0c7c635e4a 100644
--- a/src/content/reference/en/p5.Vector/normalize.mdx
+++ b/src/content/reference/en/p5.Vector/normalize.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L1726
title: normalize
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/random2D.mdx b/src/content/reference/en/p5.Vector/random2D.mdx
index 53705402ae..317b180da5 100644
--- a/src/content/reference/en/p5.Vector/random2D.mdx
+++ b/src/content/reference/en/p5.Vector/random2D.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L3243
title: random2D
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/random3D.mdx b/src/content/reference/en/p5.Vector/random3D.mdx
index 8f2cc86b5b..40661528aa 100644
--- a/src/content/reference/en/p5.Vector/random3D.mdx
+++ b/src/content/reference/en/p5.Vector/random3D.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L3311
title: random3D
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/reflect.mdx b/src/content/reference/en/p5.Vector/reflect.mdx
index 6c6426e1f7..7f8de703b4 100644
--- a/src/content/reference/en/p5.Vector/reflect.mdx
+++ b/src/content/reference/en/p5.Vector/reflect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L2869
title: reflect
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/rem.mdx b/src/content/reference/en/p5.Vector/rem.mdx
index e671272920..710d2d63c5 100644
--- a/src/content/reference/en/p5.Vector/rem.mdx
+++ b/src/content/reference/en/p5.Vector/rem.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L466
title: rem
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/rotate.mdx b/src/content/reference/en/p5.Vector/rotate.mdx
index 931b207b8e..5cc185a6ec 100644
--- a/src/content/reference/en/p5.Vector/rotate.mdx
+++ b/src/content/reference/en/p5.Vector/rotate.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L2238
title: rotate
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/set.mdx b/src/content/reference/en/p5.Vector/set.mdx
index c69b39f4f2..3583f5780e 100644
--- a/src/content/reference/en/p5.Vector/set.mdx
+++ b/src/content/reference/en/p5.Vector/set.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L161
title: set
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/setHeading.mdx b/src/content/reference/en/p5.Vector/setHeading.mdx
index 15ee51d50e..4ba7a98824 100644
--- a/src/content/reference/en/p5.Vector/setHeading.mdx
+++ b/src/content/reference/en/p5.Vector/setHeading.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L2134
title: setHeading
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/setMag.mdx b/src/content/reference/en/p5.Vector/setMag.mdx
index caf24272ce..194a80625b 100644
--- a/src/content/reference/en/p5.Vector/setMag.mdx
+++ b/src/content/reference/en/p5.Vector/setMag.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L1933
title: setMag
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/slerp.mdx b/src/content/reference/en/p5.Vector/slerp.mdx
index 1b16e7b42c..3694d202c1 100644
--- a/src/content/reference/en/p5.Vector/slerp.mdx
+++ b/src/content/reference/en/p5.Vector/slerp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L2667
title: slerp
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/sub.mdx b/src/content/reference/en/p5.Vector/sub.mdx
index 91a319daa5..c6de7f846e 100644
--- a/src/content/reference/en/p5.Vector/sub.mdx
+++ b/src/content/reference/en/p5.Vector/sub.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L635
title: sub
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/toString.mdx b/src/content/reference/en/p5.Vector/toString.mdx
index 5b1e7397af..90dab4911e 100644
--- a/src/content/reference/en/p5.Vector/toString.mdx
+++ b/src/content/reference/en/p5.Vector/toString.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L136
title: toString
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/x.mdx b/src/content/reference/en/p5.Vector/x.mdx
index 156b1b3dd1..bccf4e80eb 100644
--- a/src/content/reference/en/p5.Vector/x.mdx
+++ b/src/content/reference/en/p5.Vector/x.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L113
title: x
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/y.mdx b/src/content/reference/en/p5.Vector/y.mdx
index 57b121a718..53c4fb0645 100644
--- a/src/content/reference/en/p5.Vector/y.mdx
+++ b/src/content/reference/en/p5.Vector/y.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L120
title: 'y'
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.Vector/z.mdx b/src/content/reference/en/p5.Vector/z.mdx
index 30408807b8..d8f8670077 100644
--- a/src/content/reference/en/p5.Vector/z.mdx
+++ b/src/content/reference/en/p5.Vector/z.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L127
title: z
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5.XML/addChild.mdx b/src/content/reference/en/p5.XML/addChild.mdx
index cd779cb663..902648d6ac 100644
--- a/src/content/reference/en/p5.XML/addChild.mdx
+++ b/src/content/reference/en/p5.XML/addChild.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L538
title: addChild
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/getAttributeCount.mdx b/src/content/reference/en/p5.XML/getAttributeCount.mdx
index adbe30d8be..9defe97f2b 100644
--- a/src/content/reference/en/p5.XML/getAttributeCount.mdx
+++ b/src/content/reference/en/p5.XML/getAttributeCount.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L723
title: getAttributeCount
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/getChild.mdx b/src/content/reference/en/p5.XML/getChild.mdx
index 4eaa97a2d6..9ad2c22d9c 100644
--- a/src/content/reference/en/p5.XML/getChild.mdx
+++ b/src/content/reference/en/p5.XML/getChild.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L448
title: getChild
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/getChildren.mdx b/src/content/reference/en/p5.XML/getChildren.mdx
index 65ea80b85b..929581d9e7 100644
--- a/src/content/reference/en/p5.XML/getChildren.mdx
+++ b/src/content/reference/en/p5.XML/getChildren.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L342
title: getChildren
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/getContent.mdx b/src/content/reference/en/p5.XML/getContent.mdx
index a759224ed0..688ae2bfd3 100644
--- a/src/content/reference/en/p5.XML/getContent.mdx
+++ b/src/content/reference/en/p5.XML/getContent.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L1153
title: getContent
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/getName.mdx b/src/content/reference/en/p5.XML/getName.mdx
index f7a49dad8d..786b0e7a61 100644
--- a/src/content/reference/en/p5.XML/getName.mdx
+++ b/src/content/reference/en/p5.XML/getName.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L128
title: getName
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/getNum.mdx b/src/content/reference/en/p5.XML/getNum.mdx
index 8e34279764..2ee57cccd0 100644
--- a/src/content/reference/en/p5.XML/getNum.mdx
+++ b/src/content/reference/en/p5.XML/getNum.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L884
title: getNum
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/getParent.mdx b/src/content/reference/en/p5.XML/getParent.mdx
index b4912fff3f..cfc90e706a 100644
--- a/src/content/reference/en/p5.XML/getParent.mdx
+++ b/src/content/reference/en/p5.XML/getParent.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L77
title: getParent
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/getString.mdx b/src/content/reference/en/p5.XML/getString.mdx
index 7cd2251f7a..8851dbe446 100644
--- a/src/content/reference/en/p5.XML/getString.mdx
+++ b/src/content/reference/en/p5.XML/getString.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L989
title: getString
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/hasAttribute.mdx b/src/content/reference/en/p5.XML/hasAttribute.mdx
index ba5fe63d5d..5974087a10 100644
--- a/src/content/reference/en/p5.XML/hasAttribute.mdx
+++ b/src/content/reference/en/p5.XML/hasAttribute.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L821
title: hasAttribute
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/hasChildren.mdx b/src/content/reference/en/p5.XML/hasChildren.mdx
index 8141c22cdd..2ce2777bb3 100644
--- a/src/content/reference/en/p5.XML/hasChildren.mdx
+++ b/src/content/reference/en/p5.XML/hasChildren.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L242
title: hasChildren
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/listAttributes.mdx b/src/content/reference/en/p5.XML/listAttributes.mdx
index 095d0e8363..a3ae47ab46 100644
--- a/src/content/reference/en/p5.XML/listAttributes.mdx
+++ b/src/content/reference/en/p5.XML/listAttributes.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L767
title: listAttributes
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/listChildren.mdx b/src/content/reference/en/p5.XML/listChildren.mdx
index a2e73f6ae9..ca088b5205 100644
--- a/src/content/reference/en/p5.XML/listChildren.mdx
+++ b/src/content/reference/en/p5.XML/listChildren.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L287
title: listChildren
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/removeChild.mdx b/src/content/reference/en/p5.XML/removeChild.mdx
index b00ccb01c1..5a683854e8 100644
--- a/src/content/reference/en/p5.XML/removeChild.mdx
+++ b/src/content/reference/en/p5.XML/removeChild.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L603
title: removeChild
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/serialize.mdx b/src/content/reference/en/p5.XML/serialize.mdx
index a2b11487cd..464c60b42e 100644
--- a/src/content/reference/en/p5.XML/serialize.mdx
+++ b/src/content/reference/en/p5.XML/serialize.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L1291
title: serialize
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/setAttribute.mdx b/src/content/reference/en/p5.XML/setAttribute.mdx
index adce9e8a8d..5746ff4f4e 100644
--- a/src/content/reference/en/p5.XML/setAttribute.mdx
+++ b/src/content/reference/en/p5.XML/setAttribute.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L1093
title: setAttribute
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/setContent.mdx b/src/content/reference/en/p5.XML/setContent.mdx
index 5079007b22..6cb3d78bfd 100644
--- a/src/content/reference/en/p5.XML/setContent.mdx
+++ b/src/content/reference/en/p5.XML/setContent.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L1232
title: setContent
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.XML/setName.mdx b/src/content/reference/en/p5.XML/setName.mdx
index 5132ced8c8..588c779a6b 100644
--- a/src/content/reference/en/p5.XML/setName.mdx
+++ b/src/content/reference/en/p5.XML/setName.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L178
title: setName
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5.sound/p5.Amplitude.mdx b/src/content/reference/en/p5.sound/p5.Amplitude.mdx
index 1aa8a0d443..653d8021b6 100644
--- a/src/content/reference/en/p5.sound/p5.Amplitude.mdx
+++ b/src/content/reference/en/p5.sound/p5.Amplitude.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L3022
title: p5.Amplitude
module: p5.sound
submodule: p5.sound
@@ -24,12 +27,12 @@ methods:
description: |
Connects to the p5sound instance (main output) by default.
Optionally, you can pass in a specific source (i.e. a soundfile).
- path: p5.Amplitude/setInput
+ path: src\content\reference\en\p5.Amplitude/setInput
getLevel:
description: |
Returns a single Amplitude reading at the moment it is called.
For continuous readings, run in the draw loop.
- path: p5.Amplitude/getLevel
+ path: src\content\reference\en\p5.Amplitude/getLevel
toggleNormalize:
description: |
Determines whether the results of Amplitude.process() will be
@@ -40,12 +43,12 @@ methods:
if a louder moment occurs, the amount that Normalize adds to
all the values will change. Accepts an optional boolean parameter
(true or false). Normalizing is off by default.
- path: p5.Amplitude/toggleNormalize
+ path: src\content\reference\en\p5.Amplitude/toggleNormalize
smooth:
description: |
Smooth Amplitude analysis by averaging with the last analysis
frame. Off by default.
- path: p5.Amplitude/smooth
+ path: src\content\reference\en\p5.Amplitude/smooth
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.AudioIn.mdx b/src/content/reference/en/p5.sound/p5.AudioIn.mdx
index 2b3f2a87b2..1ba809ff00 100644
--- a/src/content/reference/en/p5.sound/p5.AudioIn.mdx
+++ b/src/content/reference/en/p5.sound/p5.AudioIn.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6015
title: p5.AudioIn
module: p5.sound
submodule: p5.sound
@@ -74,23 +77,23 @@ methods:
Chrome only allows access from localhost and over https. For this reason,
you may want to include an errorCallback—a function that is called in case
the browser won't provide mic access.
- path: p5.AudioIn/start
+ path: src\content\reference\en\p5.AudioIn/start
stop:
description: |
Turn the AudioIn off. If the AudioIn is stopped, it cannot getLevel().
If re-starting, the user may be prompted for permission access.
- path: p5.AudioIn/stop
+ path: src\content\reference\en\p5.AudioIn/stop
connect:
description: |
Connect to an audio unit. If no parameter is provided, will
connect to the main output (i.e. your speakers).
- path: p5.AudioIn/connect
+ path: src\content\reference\en\p5.AudioIn/connect
disconnect:
description: |
Disconnect the AudioIn from all audio units. For example, if
connect() had been called, disconnect() will stop sending
signal to your speakers.
- path: p5.AudioIn/disconnect
+ path: src\content\reference\en\p5.AudioIn/disconnect
getLevel:
description: |
Read the Amplitude (volume level) of an AudioIn. The AudioIn
@@ -98,11 +101,11 @@ methods:
make it easy to get a microphone's volume level. Accepts an
optional smoothing value (0.0 < 1.0). NOTE: AudioIn must
.start() before using .getLevel().
- path: p5.AudioIn/getLevel
+ path: src\content\reference\en\p5.AudioIn/getLevel
amp:
description: |
Set amplitude (volume) of a mic input between 0 and 1.0.
- path: p5.AudioIn/amp
+ path: src\content\reference\en\p5.AudioIn/amp
getSources:
description: |
Returns a list of available input sources. This is a wrapper
@@ -110,7 +113,7 @@ methods:
en-US/docs/Web/API/MediaDevices/enumerateDevices/" target="_blank">
MediaDevices.enumerateDevices() - Web APIs | MDN
and it returns a Promise.
- path: p5.AudioIn/getSources
+ path: src\content\reference\en\p5.AudioIn/getSources
setSource:
description: |
Set the input source. Accepts a number representing a
@@ -119,32 +122,32 @@ methods:
navigator.mediaDevices.enumerateDevices()
- path: p5.AudioIn/setSource
+ path: src\content\reference\en\p5.AudioIn/setSource
properties:
input:
description: ''
- path: p5.AudioIn/input
+ path: src\content\reference\en\p5.AudioIn/input
output:
description: ''
- path: p5.AudioIn/output
+ path: src\content\reference\en\p5.AudioIn/output
stream:
description: ''
- path: p5.AudioIn/stream
+ path: src\content\reference\en\p5.AudioIn/stream
mediaStream:
description: ''
- path: p5.AudioIn/mediaStream
+ path: src\content\reference\en\p5.AudioIn/mediaStream
currentSource:
description: ''
- path: p5.AudioIn/currentSource
+ path: src\content\reference\en\p5.AudioIn/currentSource
enabled:
description: |
Client must allow browser to access their microphone / audioin source.
Default: false. Will become true when the client enables access.
- path: p5.AudioIn/enabled
+ path: src\content\reference\en\p5.AudioIn/enabled
amplitude:
description: |
Input amplitude, connect to it by default but not to master out
- path: p5.AudioIn/amplitude
+ path: src\content\reference\en\p5.AudioIn/amplitude
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.AudioVoice.mdx b/src/content/reference/en/p5.sound/p5.AudioVoice.mdx
index 9030bcfa14..5f73f82b44 100644
--- a/src/content/reference/en/p5.sound/p5.AudioVoice.mdx
+++ b/src/content/reference/en/p5.sound/p5.AudioVoice.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11149
title: p5.AudioVoice
module: p5.sound
submodule: p5.sound
@@ -13,11 +16,11 @@ methods:
connect:
description: |
Connect to p5 objects or Web Audio Nodes
- path: p5.AudioVoice/connect
+ path: src\content\reference\en\p5.AudioVoice/connect
disconnect:
description: |
Disconnect from soundOut
- path: p5.AudioVoice/disconnect
+ path: src\content\reference\en\p5.AudioVoice/disconnect
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.BandPass.mdx b/src/content/reference/en/p5.sound/p5.BandPass.mdx
index a58992dbc8..e524ad2cdb 100644
--- a/src/content/reference/en/p5.sound/p5.BandPass.mdx
+++ b/src/content/reference/en/p5.sound/p5.BandPass.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6962
title: p5.BandPass
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.sound/p5.Compressor.mdx b/src/content/reference/en/p5.sound/p5.Compressor.mdx
index a3565d768a..b38dede2d8 100644
--- a/src/content/reference/en/p5.sound/p5.Compressor.mdx
+++ b/src/content/reference/en/p5.sound/p5.Compressor.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10036
title: p5.Compressor
module: p5.sound
submodule: p5.sound
@@ -37,35 +40,35 @@ methods:
description: |
Performs the same function as .connect, but also accepts
optional parameters to set compressor's audioParams
- path: p5.Compressor/process
+ path: src\content\reference\en\p5.Compressor/process
set:
description: |
Set the parameters of a compressor.
- path: p5.Compressor/set
+ path: src\content\reference\en\p5.Compressor/set
attack:
description: |
Get current attack or set value w/ time ramp
- path: p5.Compressor/attack
+ path: src\content\reference\en\p5.Compressor/attack
knee:
description: |
Get current knee or set value w/ time ramp
- path: p5.Compressor/knee
+ path: src\content\reference\en\p5.Compressor/knee
ratio:
description: |
Get current ratio or set value w/ time ramp
- path: p5.Compressor/ratio
+ path: src\content\reference\en\p5.Compressor/ratio
threshold:
description: |
Get current threshold or set value w/ time ramp
- path: p5.Compressor/threshold
+ path: src\content\reference\en\p5.Compressor/threshold
release:
description: |
Get current release or set value w/ time ramp
- path: p5.Compressor/release
+ path: src\content\reference\en\p5.Compressor/release
reduction:
description: |
Return the current reduction value
- path: p5.Compressor/reduction
+ path: src\content\reference\en\p5.Compressor/reduction
properties:
compressor:
description: >
@@ -74,7 +77,7 @@ properties:
target="_blank" title="W3 spec for Dynamics Compressor Node">Web Audio
Dynamics Compressor Node
- path: p5.Compressor/compressor
+ path: src\content\reference\en\p5.Compressor/compressor
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.Convolver.mdx b/src/content/reference/en/p5.sound/p5.Convolver.mdx
index 43a51401a1..ffa9800a8f 100644
--- a/src/content/reference/en/p5.sound/p5.Convolver.mdx
+++ b/src/content/reference/en/p5.sound/p5.Convolver.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8549
title: p5.Convolver
module: p5.sound
submodule: p5.sound
@@ -78,20 +81,20 @@ methods:
process:
description: |
Connect a source to the convolver.
- path: p5.Convolver/process
+ path: src\content\reference\en\p5.Convolver/process
addImpulse:
description: |
Load and assign a new Impulse Response to the p5.Convolver.
The impulse is added to the .impulses
array. Previous
impulses can be accessed with the .toggleImpulse(id)
method.
- path: p5.Convolver/addImpulse
+ path: src\content\reference\en\p5.Convolver/addImpulse
resetImpulse:
description: |
Similar to .addImpulse, except that the .impulses
Array is reset to save memory. A new .impulses
array is created with this impulse as the only item.
- path: p5.Convolver/resetImpulse
+ path: src\content\reference\en\p5.Convolver/resetImpulse
toggleImpulse:
description: |
If you have used .addImpulse()
to add multiple impulses
@@ -106,20 +109,20 @@ methods:
http://webaudio.github.io/web-audio-api/#the-audiobuffer-interface">
AudioBuffer) and a .name
, a String that corresponds
with the original filename.
- path: p5.Convolver/toggleImpulse
+ path: src\content\reference\en\p5.Convolver/toggleImpulse
properties:
convolverNode:
description: |
Internally, the p5.Convolver uses the a
Web Audio Convolver Node.
- path: p5.Convolver/convolverNode
+ path: src\content\reference\en\p5.Convolver/convolverNode
impulses:
description: |
If you load multiple impulse files using the .addImpulse method,
they will be stored as Objects in this Array. Toggle between them
with the toggleImpulse(id)
method.
- path: p5.Convolver/impulses
+ path: src\content\reference\en\p5.Convolver/impulses
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.Delay.mdx b/src/content/reference/en/p5.sound/p5.Delay.mdx
index d100387609..cb3d367c66 100644
--- a/src/content/reference/en/p5.sound/p5.Delay.mdx
+++ b/src/content/reference/en/p5.sound/p5.Delay.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7926
title: p5.Delay
module: p5.sound
submodule: p5.sound
@@ -68,12 +71,12 @@ methods:
description: |
Add delay to an audio signal according to a set
of delay parameters.
- path: p5.Delay/process
+ path: src\content\reference\en\p5.Delay/process
delayTime:
description: |
Set the delay (echo) time, in seconds. Usually this value will be
a floating point number between 0.0 and 1.0.
- path: p5.Delay/delayTime
+ path: src\content\reference\en\p5.Delay/delayTime
feedback:
description: >
Feedback occurs when Delay sends its signal back through its input
@@ -86,43 +89,43 @@ methods:
it will increase the overall output each time through the loop,
creating an infinite feedback loop. The default value is 0.5
- path: p5.Delay/feedback
+ path: src\content\reference\en\p5.Delay/feedback
filter:
description: |
Set a lowpass filter frequency for the delay. A lowpass filter
will cut off any frequencies higher than the filter frequency.
- path: p5.Delay/filter
+ path: src\content\reference\en\p5.Delay/filter
setType:
description: |
Choose a preset type of delay. 'pingPong' bounces the signal
from the left to the right channel to produce a stereo effect.
Any other parameter will revert to the default delay setting.
- path: p5.Delay/setType
+ path: src\content\reference\en\p5.Delay/setType
amp:
description: |
Set the output level of the delay effect.
- path: p5.Delay/amp
+ path: src\content\reference\en\p5.Delay/amp
connect:
description: |
Send output to a p5.sound or web audio object
- path: p5.Delay/connect
+ path: src\content\reference\en\p5.Delay/connect
disconnect:
description: |
Disconnect all output.
- path: p5.Delay/disconnect
+ path: src\content\reference\en\p5.Delay/disconnect
properties:
leftDelay:
description: |
The p5.Delay is built with two
Web Audio Delay Nodes, one for each stereo channel.
- path: p5.Delay/leftDelay
+ path: src\content\reference\en\p5.Delay/leftDelay
rightDelay:
description: |
The p5.Delay is built with two
Web Audio Delay Nodes, one for each stereo channel.
- path: p5.Delay/rightDelay
+ path: src\content\reference\en\p5.Delay/rightDelay
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.Distortion.mdx b/src/content/reference/en/p5.sound/p5.Distortion.mdx
index c6c96b9368..b838b8eaea 100644
--- a/src/content/reference/en/p5.sound/p5.Distortion.mdx
+++ b/src/content/reference/en/p5.sound/p5.Distortion.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10816
title: p5.Distortion
module: p5.sound
submodule: p5.sound
@@ -43,26 +46,26 @@ methods:
description: >
Process a sound source, optionally specify amount and oversample
values.
- path: p5.Distortion/process
+ path: src\content\reference\en\p5.Distortion/process
set:
description: |
Set the amount and oversample of the waveshaper distortion.
- path: p5.Distortion/set
+ path: src\content\reference\en\p5.Distortion/set
getAmount:
description: |
Return the distortion amount, typically between 0-1.
- path: p5.Distortion/getAmount
+ path: src\content\reference\en\p5.Distortion/getAmount
getOversample:
description: |
Return the oversampling.
- path: p5.Distortion/getOversample
+ path: src\content\reference\en\p5.Distortion/getOversample
properties:
WaveShaperNode:
description: |
The p5.Distortion is built with a
Web Audio WaveShaper Node.
- path: p5.Distortion/WaveShaperNode
+ path: src\content\reference\en\p5.Distortion/WaveShaperNode
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.EQ.mdx b/src/content/reference/en/p5.sound/p5.EQ.mdx
index 54573d2c4b..58fec78c9c 100644
--- a/src/content/reference/en/p5.sound/p5.EQ.mdx
+++ b/src/content/reference/en/p5.sound/p5.EQ.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7105
title: p5.EQ
module: p5.sound
submodule: p5.sound
@@ -101,7 +104,7 @@ methods:
process:
description: |
Process an input by connecting it to the EQ
- path: p5.EQ/process
+ path: src\content\reference\en\p5.EQ/process
properties:
bands:
description: >
@@ -113,7 +116,7 @@ properties:
p5.Filter API, especially gain
and freq
.
Bands are stored in an array, with indices 0 - 3, or 0 - 7
- path: p5.EQ/bands
+ path: src\content\reference\en\p5.EQ/bands
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.Effect.mdx b/src/content/reference/en/p5.sound/p5.Effect.mdx
index 986c82e148..00ad6b294a 100644
--- a/src/content/reference/en/p5.sound/p5.Effect.mdx
+++ b/src/content/reference/en/p5.sound/p5.Effect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6423
title: p5.Effect
module: p5.sound
submodule: p5.sound
@@ -54,26 +57,26 @@ methods:
amp:
description: |
Set the output volume of the filter.
- path: p5.Effect/amp
+ path: src\content\reference\en\p5.Effect/amp
chain:
description: |
Link effects together in a chain
Example usage: filter.chain(reverb, delay, panner);
May be used with an open-ended number of arguments
- path: p5.Effect/chain
+ path: src\content\reference\en\p5.Effect/chain
drywet:
description: |
Adjust the dry/wet value.
- path: p5.Effect/drywet
+ path: src\content\reference\en\p5.Effect/drywet
connect:
description: |
Send output to a p5.js-sound, Web Audio Node, or use signal to
control an AudioParam
- path: p5.Effect/connect
+ path: src\content\reference\en\p5.Effect/connect
disconnect:
description: |
Disconnect all output.
- path: p5.Effect/disconnect
+ path: src\content\reference\en\p5.Effect/disconnect
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.Envelope.mdx b/src/content/reference/en/p5.sound/p5.Envelope.mdx
index 12146b9ead..418f9826d1 100644
--- a/src/content/reference/en/p5.sound/p5.Envelope.mdx
+++ b/src/content/reference/en/p5.sound/p5.Envelope.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4721
title: p5.Envelope
module: p5.sound
submodule: p5.sound
@@ -72,7 +75,7 @@ methods:
set:
description: |
Reset the envelope with a series of time/value pairs.
- path: p5.Envelope/set
+ path: src\content\reference\en\p5.Envelope/set
setADSR:
description: >
Set values like a traditional
@@ -83,24 +86,24 @@ methods:
ADSR envelope
.
- path: p5.Envelope/setADSR
+ path: src\content\reference\en\p5.Envelope/setADSR
setRange:
description: |
Set max (attackLevel) and min (releaseLevel) of envelope.
- path: p5.Envelope/setRange
+ path: src\content\reference\en\p5.Envelope/setRange
setInput:
description: |
Assign a parameter to be controlled by this envelope.
If a p5.Sound object is given, then the p5.Envelope will control its
output gain. If multiple inputs are provided, the env will
control all of them.
- path: p5.Envelope/setInput
+ path: src\content\reference\en\p5.Envelope/setInput
setExp:
description: |
Set whether the envelope ramp is linear (default) or exponential.
Exponential ramps can be useful because we perceive amplitude
and frequency logarithmically.
- path: p5.Envelope/setExp
+ path: src\content\reference\en\p5.Envelope/setExp
play:
description: |-
Play tells the envelope to start acting on a given input.
@@ -109,7 +112,7 @@ methods:
Envelopes can also be used to control any
Web Audio Audio Param.
- path: p5.Envelope/play
+ path: src\content\reference\en\p5.Envelope/play
triggerAttack:
description: |
Trigger the Attack, and Decay portion of the Envelope.
@@ -118,13 +121,13 @@ methods:
any p5.sound object, or a
Web Audio Param.
- path: p5.Envelope/triggerAttack
+ path: src\content\reference\en\p5.Envelope/triggerAttack
triggerRelease:
description: |
Trigger the Release of the Envelope. This is similar to releasing
the key on a piano and letting the sound fade according to the
release level and release time.
- path: p5.Envelope/triggerRelease
+ path: src\content\reference\en\p5.Envelope/triggerRelease
ramp:
description: >
Exponentially ramp to a value using the first two
@@ -140,51 +143,51 @@ methods:
If the value is higher than current value, it uses attackTime,
while a decrease uses decayTime.
- path: p5.Envelope/ramp
+ path: src\content\reference\en\p5.Envelope/ramp
add:
description: |
Add a value to the p5.Oscillator's output amplitude,
and return the oscillator. Calling this method
again will override the initial add() with new values.
- path: p5.Envelope/add
+ path: src\content\reference\en\p5.Envelope/add
mult:
description: |
Multiply the p5.Envelope's output amplitude
by a fixed value. Calling this method
again will override the initial mult() with new values.
- path: p5.Envelope/mult
+ path: src\content\reference\en\p5.Envelope/mult
scale:
description: |
Scale this envelope's amplitude values to a given
range, and return the envelope. Calling this method
again will override the initial scale() with new values.
- path: p5.Envelope/scale
+ path: src\content\reference\en\p5.Envelope/scale
properties:
attackTime:
description: |
Time until envelope reaches attackLevel
- path: p5.Envelope/attackTime
+ path: src\content\reference\en\p5.Envelope/attackTime
attackLevel:
description: |
Level once attack is complete.
- path: p5.Envelope/attackLevel
+ path: src\content\reference\en\p5.Envelope/attackLevel
decayTime:
description: |
Time until envelope reaches decayLevel.
- path: p5.Envelope/decayTime
+ path: src\content\reference\en\p5.Envelope/decayTime
decayLevel:
description: >
Level after decay. The envelope will sustain here until it is
released.
- path: p5.Envelope/decayLevel
+ path: src\content\reference\en\p5.Envelope/decayLevel
releaseTime:
description: |
Duration of the release portion of the envelope.
- path: p5.Envelope/releaseTime
+ path: src\content\reference\en\p5.Envelope/releaseTime
releaseLevel:
description: |
Level at the end of the release.
- path: p5.Envelope/releaseLevel
+ path: src\content\reference\en\p5.Envelope/releaseLevel
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.FFT.mdx b/src/content/reference/en/p5.sound/p5.FFT.mdx
index 900c8d7022..caa60553b7 100644
--- a/src/content/reference/en/p5.sound/p5.FFT.mdx
+++ b/src/content/reference/en/p5.sound/p5.FFT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L3347
title: p5.FFT
module: p5.sound
submodule: p5.sound
@@ -100,7 +103,7 @@ methods:
description: |
Set the input source for the FFT analysis. If no source is
provided, FFT will analyze all sound in the sketch.
- path: p5.FFT/setInput
+ path: src\content\reference\en\p5.FFT/setInput
waveform:
description: >
Returns an array of amplitude values (between -1.0 and +1.0) that
@@ -111,7 +114,7 @@ methods:
equal to bins (defaults to 1024). Can be used to draw the waveform
of a sound.
- path: p5.FFT/waveform
+ path: src\content\reference\en\p5.FFT/waveform
analyze:
description: |
Returns an array of amplitude values (between 0 and 255)
@@ -121,7 +124,7 @@ methods:
hear. Each value represents amplitude at that slice of the
frequency spectrum. Must be called prior to using
getEnergy()
.
- path: p5.FFT/analyze
+ path: src\content\reference\en\p5.FFT/analyze
getEnergy:
description: |
Returns the amount of energy (volume) at a specific
@@ -136,7 +139,7 @@ methods:
tells the FFT to analyze frequency data, and getEnergy() uses
the results to determine the value at a specific frequency or
range of frequencies.
- path: p5.FFT/getEnergy
+ path: src\content\reference\en\p5.FFT/getEnergy
getCentroid:
description: |
Returns the
@@ -145,11 +148,11 @@ methods:
NOTE: analyze() must be called prior to getCentroid(). Analyze()
tells the FFT to analyze frequency data, and getCentroid() uses
the results determine the spectral centroid.
- path: p5.FFT/getCentroid
+ path: src\content\reference\en\p5.FFT/getCentroid
smooth:
description: |
Smooth FFT analysis by averaging with the last analysis frame.
- path: p5.FFT/smooth
+ path: src\content\reference\en\p5.FFT/smooth
linAverages:
description: |
Returns an array of average amplitude values for a given number
@@ -157,7 +160,7 @@ methods:
NOTE: analyze() must be called prior to linAverages(). Analyze()
tells the FFT to analyze frequency data, and linAverages() uses
the results to group them into a smaller set of averages.
- path: p5.FFT/linAverages
+ path: src\content\reference\en\p5.FFT/linAverages
logAverages:
description: >
Returns an array of average amplitude values of the spectrum, for a
@@ -173,7 +176,7 @@ methods:
tells the FFT to analyze frequency data, and logAverages() uses
the results to group them into a smaller set of averages.
- path: p5.FFT/logAverages
+ path: src\content\reference\en\p5.FFT/logAverages
getOctaveBands:
description: >
Calculates and Returns the 1/N
@@ -189,7 +192,7 @@ methods:
bands
and produce less frequency groups.
- path: p5.FFT/getOctaveBands
+ path: src\content\reference\en\p5.FFT/getOctaveBands
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.Filter.mdx b/src/content/reference/en/p5.sound/p5.Filter.mdx
index 90439817ad..d471f72342 100644
--- a/src/content/reference/en/p5.sound/p5.Filter.mdx
+++ b/src/content/reference/en/p5.sound/p5.Filter.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6628
title: p5.Filter
module: p5.sound
submodule: p5.sound
@@ -109,47 +112,47 @@ methods:
description: |
Filter an audio signal according to a set
of filter parameters.
- path: p5.Filter/process
+ path: src\content\reference\en\p5.Filter/process
set:
description: |
Set the frequency and the resonance of the filter.
- path: p5.Filter/set
+ path: src\content\reference\en\p5.Filter/set
freq:
description: |
Set the filter frequency, in Hz, from 10 to 22050 (the range of
human hearing, although in reality most people hear in a narrower
range).
- path: p5.Filter/freq
+ path: src\content\reference\en\p5.Filter/freq
res:
description: |
Controls either width of a bandpass frequency,
or the resonance of a low/highpass cutoff frequency.
- path: p5.Filter/res
+ path: src\content\reference\en\p5.Filter/res
gain:
description: |
Controls the gain attribute of a Biquad Filter.
This is distinctly different from .amp() which is inherited from p5.Effect
.amp() controls the volume via the output gain node
p5.Filter.gain() controls the gain parameter of a Biquad Filter node.
- path: p5.Filter/gain
+ path: src\content\reference\en\p5.Filter/gain
toggle:
description: |
Toggle function. Switches between the specified type and allpass
- path: p5.Filter/toggle
+ path: src\content\reference\en\p5.Filter/toggle
setType:
description: |
Set the type of a p5.Filter. Possible types include:
"lowpass" (default), "highpass", "bandpass",
"lowshelf", "highshelf", "peaking", "notch",
"allpass".
- path: p5.Filter/setType
+ path: src\content\reference\en\p5.Filter/setType
properties:
biquadFilter:
description: |
The p5.Filter is built with a
Web Audio BiquadFilter Node.
- path: p5.Filter/biquadFilter
+ path: src\content\reference\en\p5.Filter/biquadFilter
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.Gain.mdx b/src/content/reference/en/p5.sound/p5.Gain.mdx
index f441abc389..d0cdbe7697 100644
--- a/src/content/reference/en/p5.sound/p5.Gain.mdx
+++ b/src/content/reference/en/p5.sound/p5.Gain.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10973
title: p5.Gain
module: p5.sound
submodule: p5.sound
@@ -74,19 +77,19 @@ methods:
setInput:
description: |
Connect a source to the gain node.
- path: p5.Gain/setInput
+ path: src\content\reference\en\p5.Gain/setInput
connect:
description: |
Send output to a p5.sound or web audio object
- path: p5.Gain/connect
+ path: src\content\reference\en\p5.Gain/connect
disconnect:
description: |
Disconnect all output.
- path: p5.Gain/disconnect
+ path: src\content\reference\en\p5.Gain/disconnect
amp:
description: |
Set the output level of the gain node.
- path: p5.Gain/amp
+ path: src\content\reference\en\p5.Gain/amp
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.HighPass.mdx b/src/content/reference/en/p5.sound/p5.HighPass.mdx
index 3aa854c235..6c8f073660 100644
--- a/src/content/reference/en/p5.sound/p5.HighPass.mdx
+++ b/src/content/reference/en/p5.sound/p5.HighPass.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6938
title: p5.HighPass
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.sound/p5.LowPass.mdx b/src/content/reference/en/p5.sound/p5.LowPass.mdx
index 6ec84a3429..31da436fd8 100644
--- a/src/content/reference/en/p5.sound/p5.LowPass.mdx
+++ b/src/content/reference/en/p5.sound/p5.LowPass.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L6914
title: p5.LowPass
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.sound/p5.MonoSynth.mdx b/src/content/reference/en/p5.sound/p5.MonoSynth.mdx
index 9e91f575b5..80507c9e9c 100644
--- a/src/content/reference/en/p5.sound/p5.MonoSynth.mdx
+++ b/src/content/reference/en/p5.sound/p5.MonoSynth.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11247
title: p5.MonoSynth
module: p5.sound
submodule: p5.sound
@@ -45,19 +48,19 @@ methods:
description: |
Play tells the MonoSynth to start playing a note. This method schedules
the calling of .triggerAttack and .triggerRelease.
- path: p5.MonoSynth/play
+ path: src\content\reference\en\p5.MonoSynth/play
triggerAttack:
description: |
Trigger the Attack, and Decay portion of the Envelope.
Similar to holding down a key on a piano, but it will
hold the sustain level until you let go.
- path: p5.MonoSynth/triggerAttack
+ path: src\content\reference\en\p5.MonoSynth/triggerAttack
triggerRelease:
description: |
Trigger the release of the Envelope. This is similar to releasing
the key on a piano and letting the sound fade according to the
release level and release time.
- path: p5.MonoSynth/triggerRelease
+ path: src\content\reference\en\p5.MonoSynth/triggerRelease
setADSR:
description: >
Set values like a traditional
@@ -68,37 +71,37 @@ methods:
ADSR envelope
.
- path: p5.MonoSynth/setADSR
+ path: src\content\reference\en\p5.MonoSynth/setADSR
amp:
description: |
MonoSynth amp
- path: p5.MonoSynth/amp
+ path: src\content\reference\en\p5.MonoSynth/amp
connect:
description: |
Connect to a p5.sound / Web Audio object.
- path: p5.MonoSynth/connect
+ path: src\content\reference\en\p5.MonoSynth/connect
disconnect:
description: |
Disconnect all outputs
- path: p5.MonoSynth/disconnect
+ path: src\content\reference\en\p5.MonoSynth/disconnect
dispose:
description: |
Get rid of the MonoSynth and free up its resources / memory.
- path: p5.MonoSynth/dispose
+ path: src\content\reference\en\p5.MonoSynth/dispose
properties:
attack:
description: |
Getters and Setters
- path: p5.MonoSynth/attack
+ path: src\content\reference\en\p5.MonoSynth/attack
decay:
description: ''
- path: p5.MonoSynth/decay
+ path: src\content\reference\en\p5.MonoSynth/decay
sustain:
description: ''
- path: p5.MonoSynth/sustain
+ path: src\content\reference\en\p5.MonoSynth/sustain
release:
description: ''
- path: p5.MonoSynth/release
+ path: src\content\reference\en\p5.MonoSynth/release
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.Noise.mdx b/src/content/reference/en/p5.sound/p5.Noise.mdx
index 843ed2ce1e..ae0cd49461 100644
--- a/src/content/reference/en/p5.sound/p5.Noise.mdx
+++ b/src/content/reference/en/p5.sound/p5.Noise.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L5620
title: p5.Noise
module: p5.sound
submodule: p5.sound
@@ -19,7 +22,7 @@ methods:
description: |
Set type of noise to 'white', 'pink' or 'brown'.
White is the default.
- path: p5.Noise/setType
+ path: src\content\reference\en\p5.Noise/setType
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.OnsetDetect.mdx b/src/content/reference/en/p5.sound/p5.OnsetDetect.mdx
index 9e335ae74f..be896b7a24 100644
--- a/src/content/reference/en/p5.sound/p5.OnsetDetect.mdx
+++ b/src/content/reference/en/p5.sound/p5.OnsetDetect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11624
title: p5.OnsetDetect
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.sound/p5.Oscillator.mdx b/src/content/reference/en/p5.sound/p5.Oscillator.mdx
index d3c47fd23b..5a610b7b4a 100644
--- a/src/content/reference/en/p5.sound/p5.Oscillator.mdx
+++ b/src/content/reference/en/p5.sound/p5.Oscillator.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4060
title: p5.Oscillator
module: p5.sound
submodule: p5.sound
@@ -89,81 +92,81 @@ methods:
Starting an oscillator on a user gesture will enable audio in browsers
that have a strict autoplay policy, including Chrome and most mobile
devices. See also: userStartAudio()
.
- path: p5.Oscillator/start
+ path: src\content\reference\en\p5.Oscillator/start
stop:
description: |
Stop an oscillator. Accepts an optional parameter
to determine how long (in seconds from now) until the
oscillator stops.
- path: p5.Oscillator/stop
+ path: src\content\reference\en\p5.Oscillator/stop
amp:
description: |
Set the amplitude between 0 and 1.0. Or, pass in an object
such as an oscillator to modulate amplitude with an audio signal.
- path: p5.Oscillator/amp
+ path: src\content\reference\en\p5.Oscillator/amp
getAmp:
description: |
Returns the value of output gain
- path: p5.Oscillator/getAmp
+ path: src\content\reference\en\p5.Oscillator/getAmp
freq:
description: |
Set frequency of an oscillator to a value. Or, pass in an object
such as an oscillator to modulate the frequency with an audio signal.
- path: p5.Oscillator/freq
+ path: src\content\reference\en\p5.Oscillator/freq
getFreq:
description: |
Returns the value of frequency of oscillator
- path: p5.Oscillator/getFreq
+ path: src\content\reference\en\p5.Oscillator/getFreq
setType:
description: |
Set type to 'sine', 'triangle', 'sawtooth' or 'square'.
- path: p5.Oscillator/setType
+ path: src\content\reference\en\p5.Oscillator/setType
getType:
description: >
Returns current type of oscillator eg. 'sine', 'triangle', 'sawtooth'
or 'square'.
- path: p5.Oscillator/getType
+ path: src\content\reference\en\p5.Oscillator/getType
connect:
description: |
Connect to a p5.sound / Web Audio object.
- path: p5.Oscillator/connect
+ path: src\content\reference\en\p5.Oscillator/connect
disconnect:
description: |
Disconnect all outputs
- path: p5.Oscillator/disconnect
+ path: src\content\reference\en\p5.Oscillator/disconnect
pan:
description: |
Pan between Left (-1) and Right (1)
- path: p5.Oscillator/pan
+ path: src\content\reference\en\p5.Oscillator/pan
getPan:
description: >
Returns the current value of panPosition , between Left (-1) and Right
(1)
- path: p5.Oscillator/getPan
+ path: src\content\reference\en\p5.Oscillator/getPan
phase:
description: |
Set the phase of an oscillator between 0.0 and 1.0.
In this implementation, phase is a delay time
based on the oscillator's current frequency.
- path: p5.Oscillator/phase
+ path: src\content\reference\en\p5.Oscillator/phase
add:
description: |
Add a value to the p5.Oscillator's output amplitude,
and return the oscillator. Calling this method again
will override the initial add() with a new value.
- path: p5.Oscillator/add
+ path: src\content\reference\en\p5.Oscillator/add
mult:
description: |
Multiply the p5.Oscillator's output amplitude
by a fixed value (i.e. turn it up!). Calling this method
again will override the initial mult() with a new value.
- path: p5.Oscillator/mult
+ path: src\content\reference\en\p5.Oscillator/mult
scale:
description: |
Scale this oscillator's amplitude values to a given
range, and return the oscillator. Calling this method
again will override the initial scale() with new values.
- path: p5.Oscillator/scale
+ path: src\content\reference\en\p5.Oscillator/scale
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.Panner3D.mdx b/src/content/reference/en/p5.sound/p5.Panner3D.mdx
index a0401efff1..0fb0c3f261 100644
--- a/src/content/reference/en/p5.sound/p5.Panner3D.mdx
+++ b/src/content/reference/en/p5.sound/p5.Panner3D.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L7602
title: p5.Panner3D
module: p5.sound
submodule: p5.sound
@@ -25,52 +28,52 @@ methods:
process:
description: |
Connect an audio sorce
- path: p5.Panner3D/process
+ path: src\content\reference\en\p5.Panner3D/process
set:
description: |
Set the X,Y,Z position of the Panner
- path: p5.Panner3D/set
+ path: src\content\reference\en\p5.Panner3D/set
positionX:
description: |
Getter and setter methods for position coordinates
- path: p5.Panner3D/positionX
+ path: src\content\reference\en\p5.Panner3D/positionX
positionY:
description: |
Getter and setter methods for position coordinates
- path: p5.Panner3D/positionY
+ path: src\content\reference\en\p5.Panner3D/positionY
positionZ:
description: |
Getter and setter methods for position coordinates
- path: p5.Panner3D/positionZ
+ path: src\content\reference\en\p5.Panner3D/positionZ
orient:
description: |
Set the X,Y,Z position of the Panner
- path: p5.Panner3D/orient
+ path: src\content\reference\en\p5.Panner3D/orient
orientX:
description: |
Getter and setter methods for orient coordinates
- path: p5.Panner3D/orientX
+ path: src\content\reference\en\p5.Panner3D/orientX
orientY:
description: |
Getter and setter methods for orient coordinates
- path: p5.Panner3D/orientY
+ path: src\content\reference\en\p5.Panner3D/orientY
orientZ:
description: |
Getter and setter methods for orient coordinates
- path: p5.Panner3D/orientZ
+ path: src\content\reference\en\p5.Panner3D/orientZ
setFalloff:
description: |
Set the rolloff factor and max distance
- path: p5.Panner3D/setFalloff
+ path: src\content\reference\en\p5.Panner3D/setFalloff
maxDist:
description: |
Maxium distance between the source and the listener
- path: p5.Panner3D/maxDist
+ path: src\content\reference\en\p5.Panner3D/maxDist
rollof:
description: >
How quickly the volume is reduced as the source moves away from the
listener
- path: p5.Panner3D/rollof
+ path: src\content\reference\en\p5.Panner3D/rollof
properties:
panner:
description: >
@@ -84,7 +87,7 @@ properties:
: "equal power" or "HRTF"
DistanceModel
: "linear", "inverse", or "exponential"
- path: p5.Panner3D/panner
+ path: src\content\reference\en\p5.Panner3D/panner
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.Part.mdx b/src/content/reference/en/p5.sound/p5.Part.mdx
index 8f7f602941..e585a9d845 100644
--- a/src/content/reference/en/p5.sound/p5.Part.mdx
+++ b/src/content/reference/en/p5.sound/p5.Part.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9185
title: p5.Part
module: p5.sound
submodule: p5.sound
@@ -70,61 +73,61 @@ methods:
setBPM:
description: |
Set the tempo of this part, in Beats Per Minute.
- path: p5.Part/setBPM
+ path: src\content\reference\en\p5.Part/setBPM
getBPM:
description: |
Returns the tempo, in Beats Per Minute, of this part.
- path: p5.Part/getBPM
+ path: src\content\reference\en\p5.Part/getBPM
start:
description: |
Start playback of this part. It will play
through all of its phrases at a speed
determined by setBPM.
- path: p5.Part/start
+ path: src\content\reference\en\p5.Part/start
loop:
description: |
Loop playback of this part. It will begin
looping through all of its phrases at a speed
determined by setBPM.
- path: p5.Part/loop
+ path: src\content\reference\en\p5.Part/loop
noLoop:
description: |
Tell the part to stop looping.
- path: p5.Part/noLoop
+ path: src\content\reference\en\p5.Part/noLoop
stop:
description: >
Stop the part and cue it to step 0. Playback will resume from the
begining of the Part when it is played again.
- path: p5.Part/stop
+ path: src\content\reference\en\p5.Part/stop
pause:
description: |
Pause the part. Playback will resume
from the current step.
- path: p5.Part/pause
+ path: src\content\reference\en\p5.Part/pause
addPhrase:
description: |
Add a p5.Phrase to this Part.
- path: p5.Part/addPhrase
+ path: src\content\reference\en\p5.Part/addPhrase
removePhrase:
description: |
Remove a phrase from this part, based on the name it was
given when it was created.
- path: p5.Part/removePhrase
+ path: src\content\reference\en\p5.Part/removePhrase
getPhrase:
description: |
Get a phrase from this part, based on the name it was
given when it was created. Now you can modify its array.
- path: p5.Part/getPhrase
+ path: src\content\reference\en\p5.Part/getPhrase
replaceSequence:
description: >
Find all sequences with the specified name, and replace their patterns
with the specified array.
- path: p5.Part/replaceSequence
+ path: src\content\reference\en\p5.Part/replaceSequence
onStep:
description: >
Set the function that will be called at every step. This will clear the
previous function.
- path: p5.Part/onStep
+ path: src\content\reference\en\p5.Part/onStep
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.PeakDetect.mdx b/src/content/reference/en/p5.sound/p5.PeakDetect.mdx
index c76561a532..a15a25a869 100644
--- a/src/content/reference/en/p5.sound/p5.PeakDetect.mdx
+++ b/src/content/reference/en/p5.sound/p5.PeakDetect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10312
title: p5.PeakDetect
module: p5.sound
submodule: p5.sound
@@ -143,13 +146,13 @@ methods:
Accepts an FFT object. You must call .analyze()
on the FFT object prior to updating the peakDetect
because it relies on a completed FFT analysis.
- path: p5.PeakDetect/update
+ path: src\content\reference\en\p5.PeakDetect/update
onPeak:
description: |
onPeak accepts two arguments: a function to call when
a peak is detected. The value of the peak,
between 0.0 and 1.0, is passed to the callback.
- path: p5.PeakDetect/onPeak
+ path: src\content\reference\en\p5.PeakDetect/onPeak
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.Phrase.mdx b/src/content/reference/en/p5.sound/p5.Phrase.mdx
index e51b87a903..016bddb4d7 100644
--- a/src/content/reference/en/p5.sound/p5.Phrase.mdx
+++ b/src/content/reference/en/p5.sound/p5.Phrase.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9103
title: p5.Phrase
module: p5.sound
submodule: p5.sound
@@ -83,7 +86,7 @@ properties:
function's requirements, these values may be numbers,
strings, or an object with multiple parameters.
Zero (0) indicates a rest.
- path: p5.Phrase/sequence
+ path: src\content\reference\en\p5.Phrase/sequence
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.PolySynth.mdx b/src/content/reference/en/p5.sound/p5.PolySynth.mdx
index eb121e2690..5419c3199e 100644
--- a/src/content/reference/en/p5.sound/p5.PolySynth.mdx
+++ b/src/content/reference/en/p5.sound/p5.PolySynth.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L11691
title: p5.PolySynth
module: p5.sound
submodule: p5.sound
@@ -60,7 +63,7 @@ methods:
description: >
Play a note by triggering noteAttack and noteRelease with sustain
time
- path: p5.PolySynth/play
+ path: src\content\reference\en\p5.PolySynth/play
noteADSR:
description: >
noteADSR sets the envelope for a specific note that has just been
@@ -74,38 +77,38 @@ methods:
in order to prevent the modified envelope from being used on other
notes.
- path: p5.PolySynth/noteADSR
+ path: src\content\reference\en\p5.PolySynth/noteADSR
setADSR:
description: >
Set the PolySynths global envelope. This method modifies the envelopes
of each
monosynth so that all notes are played with this envelope.
- path: p5.PolySynth/setADSR
+ path: src\content\reference\en\p5.PolySynth/setADSR
noteAttack:
description: |
Trigger the Attack, and Decay portion of a MonoSynth.
Similar to holding down a key on a piano, but it will
hold the sustain level until you let go.
- path: p5.PolySynth/noteAttack
+ path: src\content\reference\en\p5.PolySynth/noteAttack
noteRelease:
description: |
Trigger the Release of an AudioVoice note. This is similar to releasing
the key on a piano and letting the sound fade according to the
release level and release time.
- path: p5.PolySynth/noteRelease
+ path: src\content\reference\en\p5.PolySynth/noteRelease
connect:
description: |
Connect to a p5.sound / Web Audio object.
- path: p5.PolySynth/connect
+ path: src\content\reference\en\p5.PolySynth/connect
disconnect:
description: |
Disconnect all outputs
- path: p5.PolySynth/disconnect
+ path: src\content\reference\en\p5.PolySynth/disconnect
dispose:
description: |
Get rid of the MonoSynth and free up its resources / memory.
- path: p5.PolySynth/dispose
+ path: src\content\reference\en\p5.PolySynth/dispose
properties:
notes:
description: >
@@ -120,16 +123,16 @@ properties:
released,
the value of the key becomes undefined.
- path: p5.PolySynth/notes
+ path: src\content\reference\en\p5.PolySynth/notes
polyvalue:
description: |
A PolySynth must have at least 1 voice, defaults to 8
- path: p5.PolySynth/polyvalue
+ path: src\content\reference\en\p5.PolySynth/polyvalue
AudioVoice:
description: |
Monosynth that generates the sound for each note that is triggered. The
p5.PolySynth defaults to using the p5.MonoSynth as its voice.
- path: p5.PolySynth/AudioVoice
+ path: src\content\reference\en\p5.PolySynth/AudioVoice
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.Pulse.mdx b/src/content/reference/en/p5.sound/p5.Pulse.mdx
index 8f27d0c899..29b1d1af3c 100644
--- a/src/content/reference/en/p5.sound/p5.Pulse.mdx
+++ b/src/content/reference/en/p5.sound/p5.Pulse.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L5779
title: p5.Pulse
module: p5.sound
submodule: p5.sound
@@ -60,7 +63,7 @@ methods:
description: |
Set the width of a Pulse object (an oscillator that implements
Pulse Width Modulation).
- path: p5.Pulse/width
+ path: src\content\reference\en\p5.Pulse/width
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.Reverb.mdx b/src/content/reference/en/p5.sound/p5.Reverb.mdx
index 2894566d27..83db3cfcdc 100644
--- a/src/content/reference/en/p5.sound/p5.Reverb.mdx
+++ b/src/content/reference/en/p5.sound/p5.Reverb.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8308
title: p5.Reverb
module: p5.sound
submodule: p5.sound
@@ -69,24 +72,24 @@ methods:
process:
description: |
Connect a source to the reverb, and assign reverb parameters.
- path: p5.Reverb/process
+ path: src\content\reference\en\p5.Reverb/process
set:
description: |
Set the reverb settings. Similar to .process(), but without
assigning a new input.
- path: p5.Reverb/set
+ path: src\content\reference\en\p5.Reverb/set
amp:
description: |
Set the output level of the reverb effect.
- path: p5.Reverb/amp
+ path: src\content\reference\en\p5.Reverb/amp
connect:
description: |
Send output to a p5.sound or web audio object
- path: p5.Reverb/connect
+ path: src\content\reference\en\p5.Reverb/connect
disconnect:
description: |
Disconnect all output.
- path: p5.Reverb/disconnect
+ path: src\content\reference\en\p5.Reverb/disconnect
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.SawOsc.mdx b/src/content/reference/en/p5.sound/p5.SawOsc.mdx
index 0ba76fe10d..fa981e3b9c 100644
--- a/src/content/reference/en/p5.sound/p5.SawOsc.mdx
+++ b/src/content/reference/en/p5.sound/p5.SawOsc.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4656
title: p5.SawOsc
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.sound/p5.Score.mdx b/src/content/reference/en/p5.sound/p5.Score.mdx
index d4f2d867d7..171aca9d52 100644
--- a/src/content/reference/en/p5.sound/p5.Score.mdx
+++ b/src/content/reference/en/p5.sound/p5.Score.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9493
title: p5.Score
module: p5.sound
submodule: p5.sound
@@ -21,29 +24,29 @@ methods:
start:
description: |
Start playback of the score.
- path: p5.Score/start
+ path: src\content\reference\en\p5.Score/start
stop:
description: |
Stop playback of the score.
- path: p5.Score/stop
+ path: src\content\reference\en\p5.Score/stop
pause:
description: |
Pause playback of the score.
- path: p5.Score/pause
+ path: src\content\reference\en\p5.Score/pause
loop:
description: |
Loop playback of the score.
- path: p5.Score/loop
+ path: src\content\reference\en\p5.Score/loop
noLoop:
description: |
Stop looping playback of the score. If it
is currently playing, this will go into effect
after the current round of playback completes.
- path: p5.Score/noLoop
+ path: src\content\reference\en\p5.Score/noLoop
setBPM:
description: |
Set the tempo for all parts in the score
- path: p5.Score/setBPM
+ path: src\content\reference\en\p5.Score/setBPM
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.SinOsc.mdx b/src/content/reference/en/p5.sound/p5.SinOsc.mdx
index b103bf3b89..5bb4d5a737 100644
--- a/src/content/reference/en/p5.sound/p5.SinOsc.mdx
+++ b/src/content/reference/en/p5.sound/p5.SinOsc.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4602
title: p5.SinOsc
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.sound/p5.SoundFile.mdx b/src/content/reference/en/p5.sound/p5.SoundFile.mdx
index a5bb335e51..a30302601a 100644
--- a/src/content/reference/en/p5.sound/p5.SoundFile.mdx
+++ b/src/content/reference/en/p5.sound/p5.SoundFile.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L1405
title: p5.SoundFile
module: p5.sound
submodule: p5.sound
@@ -79,11 +82,11 @@ methods:
isLoaded:
description: |
Returns true if the sound file finished loading successfully.
- path: p5.SoundFile/isLoaded
+ path: src\content\reference\en\p5.SoundFile/isLoaded
play:
description: |
Play the p5.SoundFile
- path: p5.SoundFile/play
+ path: src\content\reference\en\p5.SoundFile/play
playMode:
description: |
p5.SoundFile has two play modes: restart
and
@@ -93,7 +96,7 @@ methods:
new playback. In restart mode, play() will stop playback
and start over. With untilDone, a sound will play only if it's
not already playing. Sustain is the default mode.
- path: p5.SoundFile/playMode
+ path: src\content\reference\en\p5.SoundFile/playMode
pause:
description: |
Pauses a file that is currently playing. If the file is not
@@ -102,54 +105,54 @@ methods:
position.
If p5.SoundFile had been set to loop before it was paused,
it will continue to loop after it is unpaused with .play().
- path: p5.SoundFile/pause
+ path: src\content\reference\en\p5.SoundFile/pause
loop:
description: |
Loop the p5.SoundFile. Accepts optional parameters to set the
playback rate, playback volume, loopStart, loopEnd.
- path: p5.SoundFile/loop
+ path: src\content\reference\en\p5.SoundFile/loop
setLoop:
description: |
Set a p5.SoundFile's looping flag to true or false. If the sound
is currently playing, this change will take effect when it
reaches the end of the current playback.
- path: p5.SoundFile/setLoop
+ path: src\content\reference\en\p5.SoundFile/setLoop
isLooping:
description: >
Returns 'true' if a p5.SoundFile is currently looping and playing,
'false' if not.
- path: p5.SoundFile/isLooping
+ path: src\content\reference\en\p5.SoundFile/isLooping
isPlaying:
description: |
Returns true if a p5.SoundFile is playing, false if not (i.e.
paused or stopped).
- path: p5.SoundFile/isPlaying
+ path: src\content\reference\en\p5.SoundFile/isPlaying
isPaused:
description: |
Returns true if a p5.SoundFile is paused, false if not (i.e.
playing or stopped).
- path: p5.SoundFile/isPaused
+ path: src\content\reference\en\p5.SoundFile/isPaused
stop:
description: |
Stop soundfile playback.
- path: p5.SoundFile/stop
+ path: src\content\reference\en\p5.SoundFile/stop
pan:
description: |
Set the stereo panning of a p5.sound object to
a floating point number between -1.0 (left) and 1.0 (right).
Default is 0.0 (center).
- path: p5.SoundFile/pan
+ path: src\content\reference\en\p5.SoundFile/pan
getPan:
description: |
Returns the current stereo pan position (-1.0 to 1.0)
- path: p5.SoundFile/getPan
+ path: src\content\reference\en\p5.SoundFile/getPan
rate:
description: >
Set the playback rate of a sound file. Will change the speed and the
pitch.
Values less than zero will reverse the audio buffer.
- path: p5.SoundFile/rate
+ path: src\content\reference\en\p5.SoundFile/rate
setVolume:
description: |
Multiply the output volume (amplitude) of a sound file
@@ -160,11 +163,11 @@ methods:
complex fades, see the Envelope class.
Alternately, you can pass in a signal source such as an
oscillator to modulate the amplitude with an audio signal.
- path: p5.SoundFile/setVolume
+ path: src\content\reference\en\p5.SoundFile/setVolume
duration:
description: |
Returns the duration of a sound file in seconds.
- path: p5.SoundFile/duration
+ path: src\content\reference\en\p5.SoundFile/duration
currentTime:
description: >
Return the current position of the p5.SoundFile playhead, in seconds.
@@ -173,7 +176,7 @@ methods:
reverseBuffer
has been called, currentTime will count backwards.
- path: p5.SoundFile/currentTime
+ path: src\content\reference\en\p5.SoundFile/currentTime
jump:
description: >
Move the playhead of a soundfile that is currently playing to a
@@ -186,21 +189,21 @@ methods:
not currently playing, use the play
or loop
methods.
- path: p5.SoundFile/jump
+ path: src\content\reference\en\p5.SoundFile/jump
channels:
description: |
Return the number of channels in a sound file.
For example, Mono = 1, Stereo = 2.
- path: p5.SoundFile/channels
+ path: src\content\reference\en\p5.SoundFile/channels
sampleRate:
description: |
Return the sample rate of the sound file.
- path: p5.SoundFile/sampleRate
+ path: src\content\reference\en\p5.SoundFile/sampleRate
frames:
description: |
Return the number of samples in a sound file.
Equal to sampleRate * duration.
- path: p5.SoundFile/frames
+ path: src\content\reference\en\p5.SoundFile/frames
getPeaks:
description: |
Returns an array of amplitude peaks in a p5.SoundFile that can be
@@ -209,12 +212,12 @@ methods:
parameter, 'length', which determines size of the array.
Larger arrays result in more precise waveform visualizations.
Inspired by Wavesurfer.js.
- path: p5.SoundFile/getPeaks
+ path: src\content\reference\en\p5.SoundFile/getPeaks
reverseBuffer:
description: |
Reverses the p5.SoundFile's buffer source.
Playback must be handled separately (see example).
- path: p5.SoundFile/reverseBuffer
+ path: src\content\reference\en\p5.SoundFile/reverseBuffer
onended:
description: |
Schedule an event to be called when the soundfile
@@ -222,7 +225,7 @@ methods:
playing through once, this will be called when it
ends. If it is looping, it will be called when
stop is called.
- path: p5.SoundFile/onended
+ path: src\content\reference\en\p5.SoundFile/onended
connect:
description: |
Connects the output of a p5sound object to input of another
@@ -230,20 +233,20 @@ methods:
FFT or an Effect. If no parameter is given, it will connect to
the main output. Most p5sound objects connect to the master
output when they are created.
- path: p5.SoundFile/connect
+ path: src\content\reference\en\p5.SoundFile/connect
disconnect:
description: |
Disconnects the output of this p5sound object.
- path: p5.SoundFile/disconnect
+ path: src\content\reference\en\p5.SoundFile/disconnect
setPath:
description: |
Reset the source for this SoundFile to a
new path (URL).
- path: p5.SoundFile/setPath
+ path: src\content\reference\en\p5.SoundFile/setPath
setBuffer:
description: |
Replace the current Audio Buffer with a new Buffer.
- path: p5.SoundFile/setBuffer
+ path: src\content\reference\en\p5.SoundFile/setBuffer
addCue:
description: |
Schedule events to trigger every time a MediaElement
@@ -252,23 +255,23 @@ methods:
the callback, and an optional parameter for the callback.
Time will be passed as the first parameter to the callback function,
and param will be the second parameter.
- path: p5.SoundFile/addCue
+ path: src\content\reference\en\p5.SoundFile/addCue
removeCue:
description: |
Remove a callback based on its ID. The ID is returned by the
addCue method.
- path: p5.SoundFile/removeCue
+ path: src\content\reference\en\p5.SoundFile/removeCue
clearCues:
description: |
Remove all of the callbacks that had originally been scheduled
via the addCue method.
- path: p5.SoundFile/clearCues
+ path: src\content\reference\en\p5.SoundFile/clearCues
save:
description: |
Save a p5.SoundFile as a .wav file. The browser will prompt the user
to download the file to their device. To upload a file to a server, see
getBlob
- path: p5.SoundFile/save
+ path: src\content\reference\en\p5.SoundFile/save
getBlob:
description: >
This method is useful for sending a SoundFile to a server. It returns
@@ -291,7 +294,7 @@ methods:
and attach the blob as one of the form values using
FormData
.
- path: p5.SoundFile/getBlob
+ path: src\content\reference\en\p5.SoundFile/getBlob
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.SoundLoop.mdx b/src/content/reference/en/p5.sound/p5.SoundLoop.mdx
index 6638992a9e..e608c27990 100644
--- a/src/content/reference/en/p5.sound/p5.SoundLoop.mdx
+++ b/src/content/reference/en/p5.sound/p5.SoundLoop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9673
title: p5.SoundLoop
module: p5.sound
submodule: p5.sound
@@ -65,15 +68,15 @@ methods:
start:
description: |
Start the loop
- path: p5.SoundLoop/start
+ path: src\content\reference\en\p5.SoundLoop/start
stop:
description: |
Stop the loop
- path: p5.SoundLoop/stop
+ path: src\content\reference\en\p5.SoundLoop/stop
pause:
description: |
Pause the loop
- path: p5.SoundLoop/pause
+ path: src\content\reference\en\p5.SoundLoop/pause
syncedStart:
description: >
Synchronize loops. Use this method to start two or more loops in
@@ -85,7 +88,7 @@ methods:
master loop
i.e. loopToStart.syncedStart(loopToSyncWith)
- path: p5.SoundLoop/syncedStart
+ path: src\content\reference\en\p5.SoundLoop/syncedStart
properties:
bpm:
description: >
@@ -95,19 +98,19 @@ properties:
frequency, that will be reflected after the next callback
beats per minute (defaults to 60)
- path: p5.SoundLoop/bpm
+ path: src\content\reference\en\p5.SoundLoop/bpm
timeSignature:
description: |
number of quarter notes in a measure (defaults to 4)
- path: p5.SoundLoop/timeSignature
+ path: src\content\reference\en\p5.SoundLoop/timeSignature
interval:
description: |
length of the loops interval
- path: p5.SoundLoop/interval
+ path: src\content\reference\en\p5.SoundLoop/interval
iterations:
description: |
how many times the callback has been called so far
- path: p5.SoundLoop/iterations
+ path: src\content\reference\en\p5.SoundLoop/iterations
musicalTimeMode:
description: >
musicalTimeMode uses
- path: p5.SoundLoop/musicalTimeMode
+ path: src\content\reference\en\p5.SoundLoop/musicalTimeMode
maxIterations:
description: |
Set a limit to the number of loops to play. defaults to Infinity
- path: p5.SoundLoop/maxIterations
+ path: src\content\reference\en\p5.SoundLoop/maxIterations
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.SoundRecorder.mdx b/src/content/reference/en/p5.sound/p5.SoundRecorder.mdx
index ae53f7fa5f..fc52ca4995 100644
--- a/src/content/reference/en/p5.sound/p5.SoundRecorder.mdx
+++ b/src/content/reference/en/p5.sound/p5.SoundRecorder.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L10559
title: p5.SoundRecorder
module: p5.sound
submodule: p5.sound
@@ -83,7 +86,7 @@ methods:
Connect a specific device to the p5.SoundRecorder.
If no parameter is given, p5.SoundRecorer will record
all audible p5.sound from your sketch.
- path: p5.SoundRecorder/setInput
+ path: src\content\reference\en\p5.SoundRecorder/setInput
record:
description: |
Start recording. To access the recording, provide
@@ -93,14 +96,14 @@ methods:
(in seconds) of the recording, and a callback function that
will be called once the complete recording has been
transfered to the p5.SoundFile.
- path: p5.SoundRecorder/record
+ path: src\content\reference\en\p5.SoundRecorder/record
stop:
description: |
Stop the recording. Once the recording is stopped,
the results will be sent to the p5.SoundFile that
was given on .record(), and if a callback function
was provided on record, that function will be called.
- path: p5.SoundRecorder/stop
+ path: src\content\reference\en\p5.SoundRecorder/stop
chainable: false
---
diff --git a/src/content/reference/en/p5.sound/p5.SqrOsc.mdx b/src/content/reference/en/p5.sound/p5.SqrOsc.mdx
index 11e9769ff1..41dfab9b07 100644
--- a/src/content/reference/en/p5.sound/p5.SqrOsc.mdx
+++ b/src/content/reference/en/p5.sound/p5.SqrOsc.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4683
title: p5.SqrOsc
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5.sound/p5.TriOsc.mdx b/src/content/reference/en/p5.sound/p5.TriOsc.mdx
index 96e24afbc0..a9a3775ce9 100644
--- a/src/content/reference/en/p5.sound/p5.TriOsc.mdx
+++ b/src/content/reference/en/p5.sound/p5.TriOsc.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L4629
title: p5.TriOsc
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5/abs.mdx b/src/content/reference/en/p5/abs.mdx
index 64974a6548..5b4768419f 100644
--- a/src/content/reference/en/p5/abs.mdx
+++ b/src/content/reference/en/p5/abs.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L10
title: abs
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/accelerationX.mdx b/src/content/reference/en/p5/accelerationX.mdx
index 14edb024b5..45a4b84367 100644
--- a/src/content/reference/en/p5/accelerationX.mdx
+++ b/src/content/reference/en/p5/accelerationX.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L23
title: accelerationX
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/accelerationY.mdx b/src/content/reference/en/p5/accelerationY.mdx
index 4e9deb8f0d..f32fb62ff5 100644
--- a/src/content/reference/en/p5/accelerationY.mdx
+++ b/src/content/reference/en/p5/accelerationY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L45
title: accelerationY
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/accelerationZ.mdx b/src/content/reference/en/p5/accelerationZ.mdx
index ac646333b0..b8179e052a 100644
--- a/src/content/reference/en/p5/accelerationZ.mdx
+++ b/src/content/reference/en/p5/accelerationZ.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L67
title: accelerationZ
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/acos.mdx b/src/content/reference/en/p5/acos.mdx
index fdf96c404c..a4afb692cd 100644
--- a/src/content/reference/en/p5/acos.mdx
+++ b/src/content/reference/en/p5/acos.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/trigonometry.js#L18
title: acos
module: Math
submodule: Trigonometry
diff --git a/src/content/reference/en/p5/alpha.mdx b/src/content/reference/en/p5/alpha.mdx
index 9c389580de..babf118d2c 100644
--- a/src/content/reference/en/p5/alpha.mdx
+++ b/src/content/reference/en/p5/alpha.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/creating_reading.js#L16
title: alpha
module: Color
submodule: Creating & Reading
diff --git a/src/content/reference/en/p5/ambientLight.mdx b/src/content/reference/en/p5/ambientLight.mdx
index b241dd85c2..c85cfbfe13 100644
--- a/src/content/reference/en/p5/ambientLight.mdx
+++ b/src/content/reference/en/p5/ambientLight.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/light.js#L10
title: ambientLight
module: 3D
submodule: Lights
diff --git a/src/content/reference/en/p5/ambientMaterial.mdx b/src/content/reference/en/p5/ambientMaterial.mdx
index 2e891ceb1b..8f37f59a12 100644
--- a/src/content/reference/en/p5/ambientMaterial.mdx
+++ b/src/content/reference/en/p5/ambientMaterial.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L2416
title: ambientMaterial
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/angleMode.mdx b/src/content/reference/en/p5/angleMode.mdx
index 3196b9ed9d..91e82322a6 100644
--- a/src/content/reference/en/p5/angleMode.mdx
+++ b/src/content/reference/en/p5/angleMode.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/trigonometry.js#L557
title: angleMode
module: Math
submodule: Trigonometry
diff --git a/src/content/reference/en/p5/append.mdx b/src/content/reference/en/p5/append.mdx
index 280dcb1660..55b87ae919 100644
--- a/src/content/reference/en/p5/append.mdx
+++ b/src/content/reference/en/p5/append.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/array_functions.js#L10
title: append
module: Data
submodule: Array Functions
diff --git a/src/content/reference/en/p5/applyMatrix.mdx b/src/content/reference/en/p5/applyMatrix.mdx
index 5a43b9f169..158ca4b166 100644
--- a/src/content/reference/en/p5/applyMatrix.mdx
+++ b/src/content/reference/en/p5/applyMatrix.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/transform.js#L11
title: applyMatrix
module: Transform
submodule: Transform
diff --git a/src/content/reference/en/p5/arc.mdx b/src/content/reference/en/p5/arc.mdx
index b9a3c87165..12e49be327 100644
--- a/src/content/reference/en/p5/arc.mdx
+++ b/src/content/reference/en/p5/arc.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/2d_primitives.js#L102
title: arc
module: Shape
submodule: 2D Primitives
diff --git a/src/content/reference/en/p5/arrayCopy.mdx b/src/content/reference/en/p5/arrayCopy.mdx
index 63f0254777..4294b4e380 100644
--- a/src/content/reference/en/p5/arrayCopy.mdx
+++ b/src/content/reference/en/p5/arrayCopy.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/array_functions.js#L35
title: arrayCopy
module: Data
submodule: Array Functions
diff --git a/src/content/reference/en/p5/asin.mdx b/src/content/reference/en/p5/asin.mdx
index 3a9a2e3e31..f95a31b1a5 100644
--- a/src/content/reference/en/p5/asin.mdx
+++ b/src/content/reference/en/p5/asin.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/trigonometry.js#L80
title: asin
module: Math
submodule: Trigonometry
diff --git a/src/content/reference/en/p5/atan.mdx b/src/content/reference/en/p5/atan.mdx
index d79b9dd5f8..7ec9683345 100644
--- a/src/content/reference/en/p5/atan.mdx
+++ b/src/content/reference/en/p5/atan.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/trigonometry.js#L142
title: atan
module: Math
submodule: Trigonometry
diff --git a/src/content/reference/en/p5/atan2.mdx b/src/content/reference/en/p5/atan2.mdx
index 1dd114da96..4ca2c460c6 100644
--- a/src/content/reference/en/p5/atan2.mdx
+++ b/src/content/reference/en/p5/atan2.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/trigonometry.js#L204
title: atan2
module: Math
submodule: Trigonometry
diff --git a/src/content/reference/en/p5/background.mdx b/src/content/reference/en/p5/background.mdx
index 6e83c4b14c..c2545c03af 100644
--- a/src/content/reference/en/p5/background.mdx
+++ b/src/content/reference/en/p5/background.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/setting.js#L414
title: background
module: Color
submodule: Setting
diff --git a/src/content/reference/en/p5/baseColorShader.mdx b/src/content/reference/en/p5/baseColorShader.mdx
index bd66263c0b..c0c7f3c97d 100644
--- a/src/content/reference/en/p5/baseColorShader.mdx
+++ b/src/content/reference/en/p5/baseColorShader.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L1292
title: baseColorShader
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/baseMaterialShader.mdx b/src/content/reference/en/p5/baseMaterialShader.mdx
index 81a2788982..05463e516a 100644
--- a/src/content/reference/en/p5/baseMaterialShader.mdx
+++ b/src/content/reference/en/p5/baseMaterialShader.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L886
title: baseMaterialShader
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/baseNormalShader.mdx b/src/content/reference/en/p5/baseNormalShader.mdx
index 9b70aafb2e..ac357bc753 100644
--- a/src/content/reference/en/p5/baseNormalShader.mdx
+++ b/src/content/reference/en/p5/baseNormalShader.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L1197
title: baseNormalShader
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/baseStrokeShader.mdx b/src/content/reference/en/p5/baseStrokeShader.mdx
index e030467671..eb4098cfdc 100644
--- a/src/content/reference/en/p5/baseStrokeShader.mdx
+++ b/src/content/reference/en/p5/baseStrokeShader.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L1355
title: baseStrokeShader
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/beginClip.mdx b/src/content/reference/en/p5/beginClip.mdx
index 101fa6f8f2..eec89fce08 100644
--- a/src/content/reference/en/p5/beginClip.mdx
+++ b/src/content/reference/en/p5/beginClip.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/setting.js#L13
title: beginClip
module: Color
submodule: Setting
diff --git a/src/content/reference/en/p5/beginContour.mdx b/src/content/reference/en/p5/beginContour.mdx
index 9803da0cd7..cd0f4aeae1 100644
--- a/src/content/reference/en/p5/beginContour.mdx
+++ b/src/content/reference/en/p5/beginContour.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/vertex.js#L20
title: beginContour
module: Shape
submodule: Vertex
diff --git a/src/content/reference/en/p5/beginGeometry.mdx b/src/content/reference/en/p5/beginGeometry.mdx
index 43d9036d5b..a0930b57d7 100644
--- a/src/content/reference/en/p5/beginGeometry.mdx
+++ b/src/content/reference/en/p5/beginGeometry.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/3d_primitives.js#L13
title: beginGeometry
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5/beginShape.mdx b/src/content/reference/en/p5/beginShape.mdx
index f8a3ac24a2..575c6c85b2 100644
--- a/src/content/reference/en/p5/beginShape.mdx
+++ b/src/content/reference/en/p5/beginShape.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/vertex.js#L129
title: beginShape
module: Shape
submodule: Vertex
diff --git a/src/content/reference/en/p5/bezier.mdx b/src/content/reference/en/p5/bezier.mdx
index 8b2db69e7a..07277f7338 100644
--- a/src/content/reference/en/p5/bezier.mdx
+++ b/src/content/reference/en/p5/bezier.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/curves.js#L13
title: bezier
module: Shape
submodule: Curves
diff --git a/src/content/reference/en/p5/bezierDetail.mdx b/src/content/reference/en/p5/bezierDetail.mdx
index 285674a1c9..06e11f0b12 100644
--- a/src/content/reference/en/p5/bezierDetail.mdx
+++ b/src/content/reference/en/p5/bezierDetail.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/curves.js#L221
title: bezierDetail
module: Shape
submodule: Curves
diff --git a/src/content/reference/en/p5/bezierPoint.mdx b/src/content/reference/en/p5/bezierPoint.mdx
index b5737df25f..4101aca9e1 100644
--- a/src/content/reference/en/p5/bezierPoint.mdx
+++ b/src/content/reference/en/p5/bezierPoint.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/curves.js#L324
title: bezierPoint
module: Shape
submodule: Curves
diff --git a/src/content/reference/en/p5/bezierTangent.mdx b/src/content/reference/en/p5/bezierTangent.mdx
index d9c761e443..a97b5ab931 100644
--- a/src/content/reference/en/p5/bezierTangent.mdx
+++ b/src/content/reference/en/p5/bezierTangent.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/curves.js#L450
title: bezierTangent
module: Shape
submodule: Curves
diff --git a/src/content/reference/en/p5/bezierVertex.mdx b/src/content/reference/en/p5/bezierVertex.mdx
index bcdfde55c9..ee2b04bcc0 100644
--- a/src/content/reference/en/p5/bezierVertex.mdx
+++ b/src/content/reference/en/p5/bezierVertex.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/vertex.js#L543
title: bezierVertex
module: Shape
submodule: Vertex
diff --git a/src/content/reference/en/p5/blend.mdx b/src/content/reference/en/p5/blend.mdx
index 27d397991c..a38a4f7a92 100644
--- a/src/content/reference/en/p5/blend.mdx
+++ b/src/content/reference/en/p5/blend.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/pixels.js#L148
title: blend
module: Image
submodule: Pixels
diff --git a/src/content/reference/en/p5/blendMode.mdx b/src/content/reference/en/p5/blendMode.mdx
index 8ffe625fbd..9b847e0647 100644
--- a/src/content/reference/en/p5/blendMode.mdx
+++ b/src/content/reference/en/p5/blendMode.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/rendering.js#L720
title: blendMode
module: Rendering
submodule: Rendering
diff --git a/src/content/reference/en/p5/blue.mdx b/src/content/reference/en/p5/blue.mdx
index b6ba1b8848..5644db0769 100644
--- a/src/content/reference/en/p5/blue.mdx
+++ b/src/content/reference/en/p5/blue.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/creating_reading.js#L117
title: blue
module: Color
submodule: Creating & Reading
diff --git a/src/content/reference/en/p5/boolean.mdx b/src/content/reference/en/p5/boolean.mdx
index 1fbc9e9237..bb40d94b6f 100644
--- a/src/content/reference/en/p5/boolean.mdx
+++ b/src/content/reference/en/p5/boolean.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/conversion.js#L341
title: boolean
module: Data
submodule: Conversion
diff --git a/src/content/reference/en/p5/box.mdx b/src/content/reference/en/p5/box.mdx
index 89b801c56e..c6b3afc625 100644
--- a/src/content/reference/en/p5/box.mdx
+++ b/src/content/reference/en/p5/box.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/3d_primitives.js#L1009
title: box
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5/brightness.mdx b/src/content/reference/en/p5/brightness.mdx
index 5631384233..94d325e9b9 100644
--- a/src/content/reference/en/p5/brightness.mdx
+++ b/src/content/reference/en/p5/brightness.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/creating_reading.js#L253
title: brightness
module: Color
submodule: Creating & Reading
diff --git a/src/content/reference/en/p5/buildGeometry.mdx b/src/content/reference/en/p5/buildGeometry.mdx
index 86a65983e3..48ce2781da 100644
--- a/src/content/reference/en/p5/buildGeometry.mdx
+++ b/src/content/reference/en/p5/buildGeometry.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/3d_primitives.js#L520
title: buildGeometry
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5/byte.mdx b/src/content/reference/en/p5/byte.mdx
index db846c64c2..dc02e5a36b 100644
--- a/src/content/reference/en/p5/byte.mdx
+++ b/src/content/reference/en/p5/byte.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/conversion.js#L468
title: byte
module: Data
submodule: Conversion
diff --git a/src/content/reference/en/p5/camera.mdx b/src/content/reference/en/p5/camera.mdx
index d7eb07a490..99a6b0f600 100644
--- a/src/content/reference/en/p5/camera.mdx
+++ b/src/content/reference/en/p5/camera.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L13
title: camera
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5/ceil.mdx b/src/content/reference/en/p5/ceil.mdx
index 459b773fda..a424adbb25 100644
--- a/src/content/reference/en/p5/ceil.mdx
+++ b/src/content/reference/en/p5/ceil.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L48
title: ceil
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/changed.mdx b/src/content/reference/en/p5/changed.mdx
index 216729f824..4ce3216654 100644
--- a/src/content/reference/en/p5/changed.mdx
+++ b/src/content/reference/en/p5/changed.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L330
title: changed
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/char.mdx b/src/content/reference/en/p5/char.mdx
index df3990f230..cafca2cc38 100644
--- a/src/content/reference/en/p5/char.mdx
+++ b/src/content/reference/en/p5/char.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/conversion.js#L612
title: char
module: Data
submodule: Conversion
diff --git a/src/content/reference/en/p5/circle.mdx b/src/content/reference/en/p5/circle.mdx
index 5d60fbb3cc..d237fd4a11 100644
--- a/src/content/reference/en/p5/circle.mdx
+++ b/src/content/reference/en/p5/circle.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/2d_primitives.js#L489
title: circle
module: Shape
submodule: 2D Primitives
diff --git a/src/content/reference/en/p5/class.mdx b/src/content/reference/en/p5/class.mdx
index 400957b6cb..72a14aa6a3 100644
--- a/src/content/reference/en/p5/class.mdx
+++ b/src/content/reference/en/p5/class.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/reference.js#L1329
title: class
module: Foundation
submodule: Foundation
diff --git a/src/content/reference/en/p5/clear.mdx b/src/content/reference/en/p5/clear.mdx
index ce6b900922..923ed0f8de 100644
--- a/src/content/reference/en/p5/clear.mdx
+++ b/src/content/reference/en/p5/clear.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/setting.js#L655
title: clear
module: Color
submodule: Setting
diff --git a/src/content/reference/en/p5/clearDepth.mdx b/src/content/reference/en/p5/clearDepth.mdx
index 83ef1f2113..62136aec9a 100644
--- a/src/content/reference/en/p5/clearDepth.mdx
+++ b/src/content/reference/en/p5/clearDepth.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/rendering.js#L635
title: clearDepth
module: Rendering
submodule: Rendering
diff --git a/src/content/reference/en/p5/clearStorage.mdx b/src/content/reference/en/p5/clearStorage.mdx
index 5698e16eee..faf8076bdd 100644
--- a/src/content/reference/en/p5/clearStorage.mdx
+++ b/src/content/reference/en/p5/clearStorage.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/local_storage.js#L313
title: clearStorage
module: Data
submodule: LocalStorage
diff --git a/src/content/reference/en/p5/clip.mdx b/src/content/reference/en/p5/clip.mdx
index 2f85b585af..c5babd9707 100644
--- a/src/content/reference/en/p5/clip.mdx
+++ b/src/content/reference/en/p5/clip.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/setting.js#L222
title: clip
module: Color
submodule: Setting
diff --git a/src/content/reference/en/p5/color.mdx b/src/content/reference/en/p5/color.mdx
index 35b4b0a5f5..8b338d5943 100644
--- a/src/content/reference/en/p5/color.mdx
+++ b/src/content/reference/en/p5/color.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/creating_reading.js#L398
title: color
module: Color
submodule: Creating & Reading
diff --git a/src/content/reference/en/p5/colorMode.mdx b/src/content/reference/en/p5/colorMode.mdx
index 769f0c379a..b38bf74482 100644
--- a/src/content/reference/en/p5/colorMode.mdx
+++ b/src/content/reference/en/p5/colorMode.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/setting.js#L733
title: colorMode
module: Color
submodule: Setting
diff --git a/src/content/reference/en/p5/concat.mdx b/src/content/reference/en/p5/concat.mdx
index 481f788ea7..8901ef243b 100644
--- a/src/content/reference/en/p5/concat.mdx
+++ b/src/content/reference/en/p5/concat.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/array_functions.js#L112
title: concat
module: Data
submodule: Array Functions
diff --git a/src/content/reference/en/p5/cone.mdx b/src/content/reference/en/p5/cone.mdx
index c423e18519..ad69149f4a 100644
--- a/src/content/reference/en/p5/cone.mdx
+++ b/src/content/reference/en/p5/cone.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/3d_primitives.js#L1730
title: cone
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5/console.mdx b/src/content/reference/en/p5/console.mdx
index 1695dd7373..005695d408 100644
--- a/src/content/reference/en/p5/console.mdx
+++ b/src/content/reference/en/p5/console.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/reference.js#L1988
title: console
module: Foundation
submodule: Foundation
diff --git a/src/content/reference/en/p5/constants/ADD.mdx b/src/content/reference/en/p5/constants/ADD.mdx
index 4491ab7288..a5ffc29ae2 100644
--- a/src/content/reference/en/p5/constants/ADD.mdx
+++ b/src/content/reference/en/p5/constants/ADD.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L905
title: ADD
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/ALT.mdx b/src/content/reference/en/p5/constants/ALT.mdx
index f28fbb2f33..dbec17b5aa 100644
--- a/src/content/reference/en/p5/constants/ALT.mdx
+++ b/src/content/reference/en/p5/constants/ALT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L820
title: ALT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/ARROW.mdx b/src/content/reference/en/p5/constants/ARROW.mdx
index 26226f0bb8..6af667468e 100644
--- a/src/content/reference/en/p5/constants/ARROW.mdx
+++ b/src/content/reference/en/p5/constants/ARROW.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L55
title: ARROW
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/AUTO.mdx b/src/content/reference/en/p5/constants/AUTO.mdx
index 4793e579e2..86913a6e16 100644
--- a/src/content/reference/en/p5/constants/AUTO.mdx
+++ b/src/content/reference/en/p5/constants/AUTO.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L810
title: AUTO
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/AXES.mdx b/src/content/reference/en/p5/constants/AXES.mdx
index cda2063675..3c5fd35328 100644
--- a/src/content/reference/en/p5/constants/AXES.mdx
+++ b/src/content/reference/en/p5/constants/AXES.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1171
title: AXES
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/BACKSPACE.mdx b/src/content/reference/en/p5/constants/BACKSPACE.mdx
index 9d669879fd..9b7bf737e7 100644
--- a/src/content/reference/en/p5/constants/BACKSPACE.mdx
+++ b/src/content/reference/en/p5/constants/BACKSPACE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L826
title: BACKSPACE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/BASELINE.mdx b/src/content/reference/en/p5/constants/BASELINE.mdx
index b97bb36ad3..d9dfd6da2d 100644
--- a/src/content/reference/en/p5/constants/BASELINE.mdx
+++ b/src/content/reference/en/p5/constants/BASELINE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L675
title: BASELINE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/BEVEL.mdx b/src/content/reference/en/p5/constants/BEVEL.mdx
index 07e5210938..8e4031248e 100644
--- a/src/content/reference/en/p5/constants/BEVEL.mdx
+++ b/src/content/reference/en/p5/constants/BEVEL.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L777
title: BEVEL
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/BEZIER.mdx b/src/content/reference/en/p5/constants/BEZIER.mdx
index 400607edfe..d1427c93ac 100644
--- a/src/content/reference/en/p5/constants/BEZIER.mdx
+++ b/src/content/reference/en/p5/constants/BEZIER.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1073
title: BEZIER
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/BLEND.mdx b/src/content/reference/en/p5/constants/BLEND.mdx
index e9fed7efe0..00efa429af 100644
--- a/src/content/reference/en/p5/constants/BLEND.mdx
+++ b/src/content/reference/en/p5/constants/BLEND.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L893
title: BLEND
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/BLUR.mdx b/src/content/reference/en/p5/constants/BLUR.mdx
index 6f4fe1fc75..634497636d 100644
--- a/src/content/reference/en/p5/constants/BLUR.mdx
+++ b/src/content/reference/en/p5/constants/BLUR.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1019
title: BLUR
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/BOLD.mdx b/src/content/reference/en/p5/constants/BOLD.mdx
index 2a19faaab7..d6de2b432c 100644
--- a/src/content/reference/en/p5/constants/BOLD.mdx
+++ b/src/content/reference/en/p5/constants/BOLD.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1036
title: BOLD
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/BOLDITALIC.mdx b/src/content/reference/en/p5/constants/BOLDITALIC.mdx
index cd6237a5e0..0bf8ecc2c4 100644
--- a/src/content/reference/en/p5/constants/BOLDITALIC.mdx
+++ b/src/content/reference/en/p5/constants/BOLDITALIC.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1041
title: BOLDITALIC
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/BOTTOM.mdx b/src/content/reference/en/p5/constants/BOTTOM.mdx
index 6c98d200f2..53e9d9324b 100644
--- a/src/content/reference/en/p5/constants/BOTTOM.mdx
+++ b/src/content/reference/en/p5/constants/BOTTOM.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L670
title: BOTTOM
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/BURN.mdx b/src/content/reference/en/p5/constants/BURN.mdx
index 209900a322..709f98e6a9 100644
--- a/src/content/reference/en/p5/constants/BURN.mdx
+++ b/src/content/reference/en/p5/constants/BURN.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L976
title: BURN
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/CENTER.mdx b/src/content/reference/en/p5/constants/CENTER.mdx
index 3ff0fbdc68..0ebe99d444 100644
--- a/src/content/reference/en/p5/constants/CENTER.mdx
+++ b/src/content/reference/en/p5/constants/CENTER.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L660
title: CENTER
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/CHAR.mdx b/src/content/reference/en/p5/constants/CHAR.mdx
index b97311bfc0..1d6b3ef1d8 100644
--- a/src/content/reference/en/p5/constants/CHAR.mdx
+++ b/src/content/reference/en/p5/constants/CHAR.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1046
title: CHAR
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/CHORD.mdx b/src/content/reference/en/p5/constants/CHORD.mdx
index 9854ab6d6e..86b85a697e 100644
--- a/src/content/reference/en/p5/constants/CHORD.mdx
+++ b/src/content/reference/en/p5/constants/CHORD.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L750
title: CHORD
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/CLAMP.mdx b/src/content/reference/en/p5/constants/CLAMP.mdx
index 3feb6ead54..de67e19c63 100644
--- a/src/content/reference/en/p5/constants/CLAMP.mdx
+++ b/src/content/reference/en/p5/constants/CLAMP.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1126
title: CLAMP
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/CLOSE.mdx b/src/content/reference/en/p5/constants/CLOSE.mdx
index b1d891f631..90017037b9 100644
--- a/src/content/reference/en/p5/constants/CLOSE.mdx
+++ b/src/content/reference/en/p5/constants/CLOSE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L740
title: CLOSE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/CONTAIN.mdx b/src/content/reference/en/p5/constants/CONTAIN.mdx
index ff23139368..0c70b11896 100644
--- a/src/content/reference/en/p5/constants/CONTAIN.mdx
+++ b/src/content/reference/en/p5/constants/CONTAIN.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1188
title: CONTAIN
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/CONTROL.mdx b/src/content/reference/en/p5/constants/CONTROL.mdx
index d8d5f85c9c..181cd9345c 100644
--- a/src/content/reference/en/p5/constants/CONTROL.mdx
+++ b/src/content/reference/en/p5/constants/CONTROL.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L831
title: CONTROL
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/CORNER.mdx b/src/content/reference/en/p5/constants/CORNER.mdx
index 35b881949d..6c666d0ce9 100644
--- a/src/content/reference/en/p5/constants/CORNER.mdx
+++ b/src/content/reference/en/p5/constants/CORNER.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L635
title: CORNER
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/CORNERS.mdx b/src/content/reference/en/p5/constants/CORNERS.mdx
index 43d7dd4e4f..01612c89f0 100644
--- a/src/content/reference/en/p5/constants/CORNERS.mdx
+++ b/src/content/reference/en/p5/constants/CORNERS.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L640
title: CORNERS
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/COVER.mdx b/src/content/reference/en/p5/constants/COVER.mdx
index 0f4f4f12cb..8e34488030 100644
--- a/src/content/reference/en/p5/constants/COVER.mdx
+++ b/src/content/reference/en/p5/constants/COVER.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1194
title: COVER
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/CROSS.mdx b/src/content/reference/en/p5/constants/CROSS.mdx
index 5e799de3ab..3a0c3092db 100644
--- a/src/content/reference/en/p5/constants/CROSS.mdx
+++ b/src/content/reference/en/p5/constants/CROSS.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L60
title: CROSS
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/CURVE.mdx b/src/content/reference/en/p5/constants/CURVE.mdx
index c8787abd0d..7cb42cd16f 100644
--- a/src/content/reference/en/p5/constants/CURVE.mdx
+++ b/src/content/reference/en/p5/constants/CURVE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1078
title: CURVE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/DARKEST.mdx b/src/content/reference/en/p5/constants/DARKEST.mdx
index e84a526aa1..2ec9b35a49 100644
--- a/src/content/reference/en/p5/constants/DARKEST.mdx
+++ b/src/content/reference/en/p5/constants/DARKEST.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L913
title: DARKEST
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/DEGREES.mdx b/src/content/reference/en/p5/constants/DEGREES.mdx
index 94026da6c1..cf1e952b47 100644
--- a/src/content/reference/en/p5/constants/DEGREES.mdx
+++ b/src/content/reference/en/p5/constants/DEGREES.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L547
title: DEGREES
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/DELETE.mdx b/src/content/reference/en/p5/constants/DELETE.mdx
index 0c9d411d66..9abe4968cb 100644
--- a/src/content/reference/en/p5/constants/DELETE.mdx
+++ b/src/content/reference/en/p5/constants/DELETE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L836
title: DELETE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/DIFFERENCE.mdx b/src/content/reference/en/p5/constants/DIFFERENCE.mdx
index 302f4f0f9b..e5678d89b1 100644
--- a/src/content/reference/en/p5/constants/DIFFERENCE.mdx
+++ b/src/content/reference/en/p5/constants/DIFFERENCE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L924
title: DIFFERENCE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/DILATE.mdx b/src/content/reference/en/p5/constants/DILATE.mdx
index 9fc3c21521..2a92b2bb97 100644
--- a/src/content/reference/en/p5/constants/DILATE.mdx
+++ b/src/content/reference/en/p5/constants/DILATE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1009
title: DILATE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/DODGE.mdx b/src/content/reference/en/p5/constants/DODGE.mdx
index bf83d377da..126cef4b23 100644
--- a/src/content/reference/en/p5/constants/DODGE.mdx
+++ b/src/content/reference/en/p5/constants/DODGE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L970
title: DODGE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/DOWN_ARROW.mdx b/src/content/reference/en/p5/constants/DOWN_ARROW.mdx
index 9a4d3b6b35..bd19093904 100644
--- a/src/content/reference/en/p5/constants/DOWN_ARROW.mdx
+++ b/src/content/reference/en/p5/constants/DOWN_ARROW.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L841
title: DOWN_ARROW
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/ENTER.mdx b/src/content/reference/en/p5/constants/ENTER.mdx
index f0cbd4fe34..88cdf336f6 100644
--- a/src/content/reference/en/p5/constants/ENTER.mdx
+++ b/src/content/reference/en/p5/constants/ENTER.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L846
title: ENTER
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/ERODE.mdx b/src/content/reference/en/p5/constants/ERODE.mdx
index 634a3daf3f..7f06edca19 100644
--- a/src/content/reference/en/p5/constants/ERODE.mdx
+++ b/src/content/reference/en/p5/constants/ERODE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1014
title: ERODE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/ESCAPE.mdx b/src/content/reference/en/p5/constants/ESCAPE.mdx
index 0651423f84..56da532244 100644
--- a/src/content/reference/en/p5/constants/ESCAPE.mdx
+++ b/src/content/reference/en/p5/constants/ESCAPE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L851
title: ESCAPE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/EXCLUSION.mdx b/src/content/reference/en/p5/constants/EXCLUSION.mdx
index 8d1180ee7a..fe0de7f6ec 100644
--- a/src/content/reference/en/p5/constants/EXCLUSION.mdx
+++ b/src/content/reference/en/p5/constants/EXCLUSION.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L934
title: EXCLUSION
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/FALLBACK.mdx b/src/content/reference/en/p5/constants/FALLBACK.mdx
index 56dd49c9ec..b5ccb8fd2d 100644
--- a/src/content/reference/en/p5/constants/FALLBACK.mdx
+++ b/src/content/reference/en/p5/constants/FALLBACK.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1182
title: FALLBACK
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/FILL.mdx b/src/content/reference/en/p5/constants/FILL.mdx
index b7b55e67ff..a1b1a0d1a9 100644
--- a/src/content/reference/en/p5/constants/FILL.mdx
+++ b/src/content/reference/en/p5/constants/FILL.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1090
title: FILL
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/FLAT.mdx b/src/content/reference/en/p5/constants/FLAT.mdx
index 731b69382d..f207529810 100644
--- a/src/content/reference/en/p5/constants/FLAT.mdx
+++ b/src/content/reference/en/p5/constants/FLAT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1138
title: FLAT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/FLOAT.mdx b/src/content/reference/en/p5/constants/FLOAT.mdx
index b8a02df282..a5ae72715e 100644
--- a/src/content/reference/en/p5/constants/FLOAT.mdx
+++ b/src/content/reference/en/p5/constants/FLOAT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1212
title: FLOAT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/GRAY.mdx b/src/content/reference/en/p5/constants/GRAY.mdx
index c60cccc9b6..8e2921f984 100644
--- a/src/content/reference/en/p5/constants/GRAY.mdx
+++ b/src/content/reference/en/p5/constants/GRAY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L989
title: GRAY
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/GRID.mdx b/src/content/reference/en/p5/constants/GRID.mdx
index ba26a9a04a..2dedd20b83 100644
--- a/src/content/reference/en/p5/constants/GRID.mdx
+++ b/src/content/reference/en/p5/constants/GRID.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1165
title: GRID
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/HALF_FLOAT.mdx b/src/content/reference/en/p5/constants/HALF_FLOAT.mdx
index 78928436d0..a4abba570b 100644
--- a/src/content/reference/en/p5/constants/HALF_FLOAT.mdx
+++ b/src/content/reference/en/p5/constants/HALF_FLOAT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1218
title: HALF_FLOAT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/HALF_PI.mdx b/src/content/reference/en/p5/constants/HALF_PI.mdx
index ed453bea45..021f64b30a 100644
--- a/src/content/reference/en/p5/constants/HALF_PI.mdx
+++ b/src/content/reference/en/p5/constants/HALF_PI.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L88
title: HALF_PI
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/HAND.mdx b/src/content/reference/en/p5/constants/HAND.mdx
index a121599031..74ad725d60 100644
--- a/src/content/reference/en/p5/constants/HAND.mdx
+++ b/src/content/reference/en/p5/constants/HAND.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L65
title: HAND
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/HARD_LIGHT.mdx b/src/content/reference/en/p5/constants/HARD_LIGHT.mdx
index 3710501168..0a6f544c31 100644
--- a/src/content/reference/en/p5/constants/HARD_LIGHT.mdx
+++ b/src/content/reference/en/p5/constants/HARD_LIGHT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L960
title: HARD_LIGHT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/HSB.mdx b/src/content/reference/en/p5/constants/HSB.mdx
index 77bdaca87f..610d83db1c 100644
--- a/src/content/reference/en/p5/constants/HSB.mdx
+++ b/src/content/reference/en/p5/constants/HSB.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L794
title: HSB
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/HSL.mdx b/src/content/reference/en/p5/constants/HSL.mdx
index 0f7392143d..8f5c17a375 100644
--- a/src/content/reference/en/p5/constants/HSL.mdx
+++ b/src/content/reference/en/p5/constants/HSL.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L803
title: HSL
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/IMAGE.mdx b/src/content/reference/en/p5/constants/IMAGE.mdx
index f45690d772..62917f5875 100644
--- a/src/content/reference/en/p5/constants/IMAGE.mdx
+++ b/src/content/reference/en/p5/constants/IMAGE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1108
title: IMAGE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/IMMEDIATE.mdx b/src/content/reference/en/p5/constants/IMMEDIATE.mdx
index 1c5aa611be..047ba6c13a 100644
--- a/src/content/reference/en/p5/constants/IMMEDIATE.mdx
+++ b/src/content/reference/en/p5/constants/IMMEDIATE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1100
title: IMMEDIATE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/INVERT.mdx b/src/content/reference/en/p5/constants/INVERT.mdx
index 9e90a912b9..c5f388ad24 100644
--- a/src/content/reference/en/p5/constants/INVERT.mdx
+++ b/src/content/reference/en/p5/constants/INVERT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L999
title: INVERT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/ITALIC.mdx b/src/content/reference/en/p5/constants/ITALIC.mdx
index ae2c30b407..a979213a11 100644
--- a/src/content/reference/en/p5/constants/ITALIC.mdx
+++ b/src/content/reference/en/p5/constants/ITALIC.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1031
title: ITALIC
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/LABEL.mdx b/src/content/reference/en/p5/constants/LABEL.mdx
index e9318f7506..37c672686a 100644
--- a/src/content/reference/en/p5/constants/LABEL.mdx
+++ b/src/content/reference/en/p5/constants/LABEL.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1177
title: LABEL
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/LANDSCAPE.mdx b/src/content/reference/en/p5/constants/LANDSCAPE.mdx
index 957015183a..dfeb744666 100644
--- a/src/content/reference/en/p5/constants/LANDSCAPE.mdx
+++ b/src/content/reference/en/p5/constants/LANDSCAPE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1150
title: LANDSCAPE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/LEFT.mdx b/src/content/reference/en/p5/constants/LEFT.mdx
index f98d30c4d5..eb0aca64c2 100644
--- a/src/content/reference/en/p5/constants/LEFT.mdx
+++ b/src/content/reference/en/p5/constants/LEFT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L655
title: LEFT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/LEFT_ARROW.mdx b/src/content/reference/en/p5/constants/LEFT_ARROW.mdx
index e8fe2192d6..ec4eb79d45 100644
--- a/src/content/reference/en/p5/constants/LEFT_ARROW.mdx
+++ b/src/content/reference/en/p5/constants/LEFT_ARROW.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L856
title: LEFT_ARROW
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/LIGHTEST.mdx b/src/content/reference/en/p5/constants/LIGHTEST.mdx
index a62153dc47..adf1bf8a36 100644
--- a/src/content/reference/en/p5/constants/LIGHTEST.mdx
+++ b/src/content/reference/en/p5/constants/LIGHTEST.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L918
title: LIGHTEST
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/LINEAR.mdx b/src/content/reference/en/p5/constants/LINEAR.mdx
index 8a8debd45e..73166f5553 100644
--- a/src/content/reference/en/p5/constants/LINEAR.mdx
+++ b/src/content/reference/en/p5/constants/LINEAR.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1063
title: LINEAR
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/LINES.mdx b/src/content/reference/en/p5/constants/LINES.mdx
index 7d5855d342..41d8f09b8f 100644
--- a/src/content/reference/en/p5/constants/LINES.mdx
+++ b/src/content/reference/en/p5/constants/LINES.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L687
title: LINES
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/LINE_LOOP.mdx b/src/content/reference/en/p5/constants/LINE_LOOP.mdx
index 30f455df69..6ff7d06a51 100644
--- a/src/content/reference/en/p5/constants/LINE_LOOP.mdx
+++ b/src/content/reference/en/p5/constants/LINE_LOOP.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L699
title: LINE_LOOP
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/LINE_STRIP.mdx b/src/content/reference/en/p5/constants/LINE_STRIP.mdx
index d5fbcece9b..8f016548b2 100644
--- a/src/content/reference/en/p5/constants/LINE_STRIP.mdx
+++ b/src/content/reference/en/p5/constants/LINE_STRIP.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L693
title: LINE_STRIP
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/MIRROR.mdx b/src/content/reference/en/p5/constants/MIRROR.mdx
index 2077acd834..d95feeec12 100644
--- a/src/content/reference/en/p5/constants/MIRROR.mdx
+++ b/src/content/reference/en/p5/constants/MIRROR.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1131
title: MIRROR
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/MITER.mdx b/src/content/reference/en/p5/constants/MITER.mdx
index e2d9da35c9..284a817322 100644
--- a/src/content/reference/en/p5/constants/MITER.mdx
+++ b/src/content/reference/en/p5/constants/MITER.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L782
title: MITER
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/MOVE.mdx b/src/content/reference/en/p5/constants/MOVE.mdx
index 3e9880acae..435dd5f993 100644
--- a/src/content/reference/en/p5/constants/MOVE.mdx
+++ b/src/content/reference/en/p5/constants/MOVE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L70
title: MOVE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/MULTIPLY.mdx b/src/content/reference/en/p5/constants/MULTIPLY.mdx
index d4b8b1ce98..adca5dd23a 100644
--- a/src/content/reference/en/p5/constants/MULTIPLY.mdx
+++ b/src/content/reference/en/p5/constants/MULTIPLY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L939
title: MULTIPLY
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/NEAREST.mdx b/src/content/reference/en/p5/constants/NEAREST.mdx
index a8cfe5eadb..9fd56ed026 100644
--- a/src/content/reference/en/p5/constants/NEAREST.mdx
+++ b/src/content/reference/en/p5/constants/NEAREST.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1116
title: NEAREST
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/NORMAL.mdx b/src/content/reference/en/p5/constants/NORMAL.mdx
index 116234df4f..19c1dbbb2e 100644
--- a/src/content/reference/en/p5/constants/NORMAL.mdx
+++ b/src/content/reference/en/p5/constants/NORMAL.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1026
title: NORMAL
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/OPAQUE.mdx b/src/content/reference/en/p5/constants/OPAQUE.mdx
index f3afc216f9..9ca629c531 100644
--- a/src/content/reference/en/p5/constants/OPAQUE.mdx
+++ b/src/content/reference/en/p5/constants/OPAQUE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L994
title: OPAQUE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/OPEN.mdx b/src/content/reference/en/p5/constants/OPEN.mdx
index 135e570bad..d62e977470 100644
--- a/src/content/reference/en/p5/constants/OPEN.mdx
+++ b/src/content/reference/en/p5/constants/OPEN.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L745
title: OPEN
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/OPTION.mdx b/src/content/reference/en/p5/constants/OPTION.mdx
index 17eb46f268..214234caeb 100644
--- a/src/content/reference/en/p5/constants/OPTION.mdx
+++ b/src/content/reference/en/p5/constants/OPTION.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L861
title: OPTION
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/OVERLAY.mdx b/src/content/reference/en/p5/constants/OVERLAY.mdx
index 999d6f2772..936e815ccb 100644
--- a/src/content/reference/en/p5/constants/OVERLAY.mdx
+++ b/src/content/reference/en/p5/constants/OVERLAY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L955
title: OVERLAY
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/P2D.mdx b/src/content/reference/en/p5/constants/P2D.mdx
index 317cc89f07..b505d30e75 100644
--- a/src/content/reference/en/p5/constants/P2D.mdx
+++ b/src/content/reference/en/p5/constants/P2D.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L18
title: P2D
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/PI.mdx b/src/content/reference/en/p5/constants/PI.mdx
index ec403cc391..709520ade7 100644
--- a/src/content/reference/en/p5/constants/PI.mdx
+++ b/src/content/reference/en/p5/constants/PI.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L178
title: PI
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/PIE.mdx b/src/content/reference/en/p5/constants/PIE.mdx
index ec12fe0c1b..02786436c0 100644
--- a/src/content/reference/en/p5/constants/PIE.mdx
+++ b/src/content/reference/en/p5/constants/PIE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L755
title: PIE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/POINTS.mdx b/src/content/reference/en/p5/constants/POINTS.mdx
index c972f38a7b..be6233fe1c 100644
--- a/src/content/reference/en/p5/constants/POINTS.mdx
+++ b/src/content/reference/en/p5/constants/POINTS.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L681
title: POINTS
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/PORTRAIT.mdx b/src/content/reference/en/p5/constants/PORTRAIT.mdx
index f0a92f0632..8d65e726cf 100644
--- a/src/content/reference/en/p5/constants/PORTRAIT.mdx
+++ b/src/content/reference/en/p5/constants/PORTRAIT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1155
title: PORTRAIT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/POSTERIZE.mdx b/src/content/reference/en/p5/constants/POSTERIZE.mdx
index 8496c73072..27639368b3 100644
--- a/src/content/reference/en/p5/constants/POSTERIZE.mdx
+++ b/src/content/reference/en/p5/constants/POSTERIZE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1004
title: POSTERIZE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/PROJECT.mdx b/src/content/reference/en/p5/constants/PROJECT.mdx
index c8cb9d1ac9..21b7b64f5c 100644
--- a/src/content/reference/en/p5/constants/PROJECT.mdx
+++ b/src/content/reference/en/p5/constants/PROJECT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L760
title: PROJECT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/QUADRATIC.mdx b/src/content/reference/en/p5/constants/QUADRATIC.mdx
index 5b5c681cde..c7984937ce 100644
--- a/src/content/reference/en/p5/constants/QUADRATIC.mdx
+++ b/src/content/reference/en/p5/constants/QUADRATIC.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1068
title: QUADRATIC
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/QUADS.mdx b/src/content/reference/en/p5/constants/QUADS.mdx
index 373136fb0e..9974af7967 100644
--- a/src/content/reference/en/p5/constants/QUADS.mdx
+++ b/src/content/reference/en/p5/constants/QUADS.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L723
title: QUADS
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/QUAD_STRIP.mdx b/src/content/reference/en/p5/constants/QUAD_STRIP.mdx
index 3a8e9a2c9e..8164200f20 100644
--- a/src/content/reference/en/p5/constants/QUAD_STRIP.mdx
+++ b/src/content/reference/en/p5/constants/QUAD_STRIP.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L728
title: QUAD_STRIP
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/QUARTER_PI.mdx b/src/content/reference/en/p5/constants/QUARTER_PI.mdx
index f2ead3884f..29380b8010 100644
--- a/src/content/reference/en/p5/constants/QUARTER_PI.mdx
+++ b/src/content/reference/en/p5/constants/QUARTER_PI.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L267
title: QUARTER_PI
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/RADIANS.mdx b/src/content/reference/en/p5/constants/RADIANS.mdx
index 8599799a08..a268f4b11f 100644
--- a/src/content/reference/en/p5/constants/RADIANS.mdx
+++ b/src/content/reference/en/p5/constants/RADIANS.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L587
title: RADIANS
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/RADIUS.mdx b/src/content/reference/en/p5/constants/RADIUS.mdx
index 047aaae889..ea704d65f0 100644
--- a/src/content/reference/en/p5/constants/RADIUS.mdx
+++ b/src/content/reference/en/p5/constants/RADIUS.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L645
title: RADIUS
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/REMOVE.mdx b/src/content/reference/en/p5/constants/REMOVE.mdx
index a42d93ca33..01a81fbe27 100644
--- a/src/content/reference/en/p5/constants/REMOVE.mdx
+++ b/src/content/reference/en/p5/constants/REMOVE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L899
title: REMOVE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/REPEAT.mdx b/src/content/reference/en/p5/constants/REPEAT.mdx
index 3837236e10..029b22d3c6 100644
--- a/src/content/reference/en/p5/constants/REPEAT.mdx
+++ b/src/content/reference/en/p5/constants/REPEAT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1121
title: REPEAT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/REPLACE.mdx b/src/content/reference/en/p5/constants/REPLACE.mdx
index 872757da13..5dc0993bd3 100644
--- a/src/content/reference/en/p5/constants/REPLACE.mdx
+++ b/src/content/reference/en/p5/constants/REPLACE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L949
title: REPLACE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/RETURN.mdx b/src/content/reference/en/p5/constants/RETURN.mdx
index 49403fae56..394818975c 100644
--- a/src/content/reference/en/p5/constants/RETURN.mdx
+++ b/src/content/reference/en/p5/constants/RETURN.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L866
title: RETURN
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/RGB.mdx b/src/content/reference/en/p5/constants/RGB.mdx
index a0897e412f..cb8565eed3 100644
--- a/src/content/reference/en/p5/constants/RGB.mdx
+++ b/src/content/reference/en/p5/constants/RGB.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L789
title: RGB
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/RGBA.mdx b/src/content/reference/en/p5/constants/RGBA.mdx
index b7a6b6bae2..deee1e5e84 100644
--- a/src/content/reference/en/p5/constants/RGBA.mdx
+++ b/src/content/reference/en/p5/constants/RGBA.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1224
title: RGBA
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/RIGHT.mdx b/src/content/reference/en/p5/constants/RIGHT.mdx
index aec0d43de2..5ecfc1b164 100644
--- a/src/content/reference/en/p5/constants/RIGHT.mdx
+++ b/src/content/reference/en/p5/constants/RIGHT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L650
title: RIGHT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/RIGHT_ARROW.mdx b/src/content/reference/en/p5/constants/RIGHT_ARROW.mdx
index ef8e5c931a..08391ccdd1 100644
--- a/src/content/reference/en/p5/constants/RIGHT_ARROW.mdx
+++ b/src/content/reference/en/p5/constants/RIGHT_ARROW.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L871
title: RIGHT_ARROW
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/ROUND.mdx b/src/content/reference/en/p5/constants/ROUND.mdx
index a00ec5e772..8d032ebdeb 100644
--- a/src/content/reference/en/p5/constants/ROUND.mdx
+++ b/src/content/reference/en/p5/constants/ROUND.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L772
title: ROUND
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/SCREEN.mdx b/src/content/reference/en/p5/constants/SCREEN.mdx
index 90dab63276..aadb7c609c 100644
--- a/src/content/reference/en/p5/constants/SCREEN.mdx
+++ b/src/content/reference/en/p5/constants/SCREEN.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L944
title: SCREEN
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/SHIFT.mdx b/src/content/reference/en/p5/constants/SHIFT.mdx
index 7f6f1fe0f8..0925073151 100644
--- a/src/content/reference/en/p5/constants/SHIFT.mdx
+++ b/src/content/reference/en/p5/constants/SHIFT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L876
title: SHIFT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/SMOOTH.mdx b/src/content/reference/en/p5/constants/SMOOTH.mdx
index 79747bcfd2..f3bf123e09 100644
--- a/src/content/reference/en/p5/constants/SMOOTH.mdx
+++ b/src/content/reference/en/p5/constants/SMOOTH.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1143
title: SMOOTH
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/SOFT_LIGHT.mdx b/src/content/reference/en/p5/constants/SOFT_LIGHT.mdx
index 3d6ba329d9..d502fabffc 100644
--- a/src/content/reference/en/p5/constants/SOFT_LIGHT.mdx
+++ b/src/content/reference/en/p5/constants/SOFT_LIGHT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L965
title: SOFT_LIGHT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/SQUARE.mdx b/src/content/reference/en/p5/constants/SQUARE.mdx
index a77e648b2e..8372605c8e 100644
--- a/src/content/reference/en/p5/constants/SQUARE.mdx
+++ b/src/content/reference/en/p5/constants/SQUARE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L766
title: SQUARE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/STROKE.mdx b/src/content/reference/en/p5/constants/STROKE.mdx
index ae2c35b45c..722cb66428 100644
--- a/src/content/reference/en/p5/constants/STROKE.mdx
+++ b/src/content/reference/en/p5/constants/STROKE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1085
title: STROKE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/SUBTRACT.mdx b/src/content/reference/en/p5/constants/SUBTRACT.mdx
index 452bbe2a1b..6c66157a42 100644
--- a/src/content/reference/en/p5/constants/SUBTRACT.mdx
+++ b/src/content/reference/en/p5/constants/SUBTRACT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L929
title: SUBTRACT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/TAB.mdx b/src/content/reference/en/p5/constants/TAB.mdx
index 5feec3d3d6..10109f5ec6 100644
--- a/src/content/reference/en/p5/constants/TAB.mdx
+++ b/src/content/reference/en/p5/constants/TAB.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L881
title: TAB
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/TAU.mdx b/src/content/reference/en/p5/constants/TAU.mdx
index e82d45abf0..682a6c54b4 100644
--- a/src/content/reference/en/p5/constants/TAU.mdx
+++ b/src/content/reference/en/p5/constants/TAU.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L357
title: TAU
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/TESS.mdx b/src/content/reference/en/p5/constants/TESS.mdx
index 0ceafc8ad3..8f2be0ed92 100644
--- a/src/content/reference/en/p5/constants/TESS.mdx
+++ b/src/content/reference/en/p5/constants/TESS.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L734
title: TESS
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/TEXT.mdx b/src/content/reference/en/p5/constants/TEXT.mdx
index ef43458f95..717560db73 100644
--- a/src/content/reference/en/p5/constants/TEXT.mdx
+++ b/src/content/reference/en/p5/constants/TEXT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L75
title: TEXT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/TEXTURE.mdx b/src/content/reference/en/p5/constants/TEXTURE.mdx
index adbad912aa..12b6ec9ebf 100644
--- a/src/content/reference/en/p5/constants/TEXTURE.mdx
+++ b/src/content/reference/en/p5/constants/TEXTURE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1095
title: TEXTURE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/THRESHOLD.mdx b/src/content/reference/en/p5/constants/THRESHOLD.mdx
index 230e39b064..7ef5f1a34d 100644
--- a/src/content/reference/en/p5/constants/THRESHOLD.mdx
+++ b/src/content/reference/en/p5/constants/THRESHOLD.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L984
title: THRESHOLD
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/TOP.mdx b/src/content/reference/en/p5/constants/TOP.mdx
index 28383719e9..faea37c89d 100644
--- a/src/content/reference/en/p5/constants/TOP.mdx
+++ b/src/content/reference/en/p5/constants/TOP.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L665
title: TOP
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/TRIANGLES.mdx b/src/content/reference/en/p5/constants/TRIANGLES.mdx
index b17df78d93..177166c04f 100644
--- a/src/content/reference/en/p5/constants/TRIANGLES.mdx
+++ b/src/content/reference/en/p5/constants/TRIANGLES.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L705
title: TRIANGLES
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/TRIANGLE_FAN.mdx b/src/content/reference/en/p5/constants/TRIANGLE_FAN.mdx
index 5af8883243..89f2abe9ab 100644
--- a/src/content/reference/en/p5/constants/TRIANGLE_FAN.mdx
+++ b/src/content/reference/en/p5/constants/TRIANGLE_FAN.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L711
title: TRIANGLE_FAN
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/TRIANGLE_STRIP.mdx b/src/content/reference/en/p5/constants/TRIANGLE_STRIP.mdx
index 1539a9739b..9816488b94 100644
--- a/src/content/reference/en/p5/constants/TRIANGLE_STRIP.mdx
+++ b/src/content/reference/en/p5/constants/TRIANGLE_STRIP.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L717
title: TRIANGLE_STRIP
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/TWO_PI.mdx b/src/content/reference/en/p5/constants/TWO_PI.mdx
index a6981e3fe0..67895ed51a 100644
--- a/src/content/reference/en/p5/constants/TWO_PI.mdx
+++ b/src/content/reference/en/p5/constants/TWO_PI.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L452
title: TWO_PI
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/UNSIGNED_BYTE.mdx b/src/content/reference/en/p5/constants/UNSIGNED_BYTE.mdx
index e7dcaeb69b..18c0621e69 100644
--- a/src/content/reference/en/p5/constants/UNSIGNED_BYTE.mdx
+++ b/src/content/reference/en/p5/constants/UNSIGNED_BYTE.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1200
title: UNSIGNED_BYTE
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/UNSIGNED_INT.mdx b/src/content/reference/en/p5/constants/UNSIGNED_INT.mdx
index d5d1283078..c1621c7c15 100644
--- a/src/content/reference/en/p5/constants/UNSIGNED_INT.mdx
+++ b/src/content/reference/en/p5/constants/UNSIGNED_INT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1206
title: UNSIGNED_INT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/UP_ARROW.mdx b/src/content/reference/en/p5/constants/UP_ARROW.mdx
index 3ca222a2e6..e82ff68dd2 100644
--- a/src/content/reference/en/p5/constants/UP_ARROW.mdx
+++ b/src/content/reference/en/p5/constants/UP_ARROW.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L886
title: UP_ARROW
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/VERSION.mdx b/src/content/reference/en/p5/constants/VERSION.mdx
index 76049b8678..de708d3876 100644
--- a/src/content/reference/en/p5/constants/VERSION.mdx
+++ b/src/content/reference/en/p5/constants/VERSION.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L9
title: VERSION
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/WAIT.mdx b/src/content/reference/en/p5/constants/WAIT.mdx
index 4bb546dbcc..db2b3f297f 100644
--- a/src/content/reference/en/p5/constants/WAIT.mdx
+++ b/src/content/reference/en/p5/constants/WAIT.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L80
title: WAIT
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/WEBGL.mdx b/src/content/reference/en/p5/constants/WEBGL.mdx
index fa29351fbc..d0a60604a1 100644
--- a/src/content/reference/en/p5/constants/WEBGL.mdx
+++ b/src/content/reference/en/p5/constants/WEBGL.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L24
title: WEBGL
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/WEBGL2.mdx b/src/content/reference/en/p5/constants/WEBGL2.mdx
index 935dd7ad51..cd81b221f2 100644
--- a/src/content/reference/en/p5/constants/WEBGL2.mdx
+++ b/src/content/reference/en/p5/constants/WEBGL2.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L45
title: WEBGL2
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constants/WORD.mdx b/src/content/reference/en/p5/constants/WORD.mdx
index 234de17a17..7f170fb9fa 100644
--- a/src/content/reference/en/p5/constants/WORD.mdx
+++ b/src/content/reference/en/p5/constants/WORD.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/constants.js#L1051
title: WORD
module: Constants
submodule: Constants
diff --git a/src/content/reference/en/p5/constrain.mdx b/src/content/reference/en/p5/constrain.mdx
index 5cd3464a58..b9b5ff4c79 100644
--- a/src/content/reference/en/p5/constrain.mdx
+++ b/src/content/reference/en/p5/constrain.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L91
title: constrain
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/copy.mdx b/src/content/reference/en/p5/copy.mdx
index 76146bba8e..1f910f804e 100644
--- a/src/content/reference/en/p5/copy.mdx
+++ b/src/content/reference/en/p5/copy.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/pixels.js#L288
title: copy
module: Image
submodule: Pixels
diff --git a/src/content/reference/en/p5/cos.mdx b/src/content/reference/en/p5/cos.mdx
index ec17d10470..2a0d5011cc 100644
--- a/src/content/reference/en/p5/cos.mdx
+++ b/src/content/reference/en/p5/cos.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/trigonometry.js#L281
title: cos
module: Math
submodule: Trigonometry
diff --git a/src/content/reference/en/p5/createA.mdx b/src/content/reference/en/p5/createA.mdx
index f9809d38e7..c22bcfe706 100644
--- a/src/content/reference/en/p5/createA.mdx
+++ b/src/content/reference/en/p5/createA.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L724
title: createA
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createAudio.mdx b/src/content/reference/en/p5/createAudio.mdx
index 29d84504d2..740cef8798 100644
--- a/src/content/reference/en/p5/createAudio.mdx
+++ b/src/content/reference/en/p5/createAudio.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L2213
title: createAudio
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createButton.mdx b/src/content/reference/en/p5/createButton.mdx
index cd1caead46..26c250e2ce 100644
--- a/src/content/reference/en/p5/createButton.mdx
+++ b/src/content/reference/en/p5/createButton.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L924
title: createButton
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createCamera.mdx b/src/content/reference/en/p5/createCamera.mdx
index 8822942b7b..7cefc03a46 100644
--- a/src/content/reference/en/p5/createCamera.mdx
+++ b/src/content/reference/en/p5/createCamera.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L638
title: createCamera
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5/createCanvas.mdx b/src/content/reference/en/p5/createCanvas.mdx
index f5e66579d6..d7a1ee0554 100644
--- a/src/content/reference/en/p5/createCanvas.mdx
+++ b/src/content/reference/en/p5/createCanvas.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/rendering.js#L15
title: createCanvas
module: Rendering
submodule: Rendering
diff --git a/src/content/reference/en/p5/createCapture.mdx b/src/content/reference/en/p5/createCapture.mdx
index ec1049ffe1..6029931888 100644
--- a/src/content/reference/en/p5/createCapture.mdx
+++ b/src/content/reference/en/p5/createCapture.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L2295
title: createCapture
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createCheckbox.mdx b/src/content/reference/en/p5/createCheckbox.mdx
index 98b3700c39..50e3631c8a 100644
--- a/src/content/reference/en/p5/createCheckbox.mdx
+++ b/src/content/reference/en/p5/createCheckbox.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L1008
title: createCheckbox
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createColorPicker.mdx b/src/content/reference/en/p5/createColorPicker.mdx
index 5cfb4b4fd2..6c2701910d 100644
--- a/src/content/reference/en/p5/createColorPicker.mdx
+++ b/src/content/reference/en/p5/createColorPicker.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L1759
title: createColorPicker
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createConvolver.mdx b/src/content/reference/en/p5/createConvolver.mdx
index d851c7dd39..89015c4108 100644
--- a/src/content/reference/en/p5/createConvolver.mdx
+++ b/src/content/reference/en/p5/createConvolver.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L8885
title: createConvolver
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5/createDiv.mdx b/src/content/reference/en/p5/createDiv.mdx
index 1f6123d6b2..30bca50b2e 100644
--- a/src/content/reference/en/p5/createDiv.mdx
+++ b/src/content/reference/en/p5/createDiv.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L491
title: createDiv
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createElement.mdx b/src/content/reference/en/p5/createElement.mdx
index 99b0234fce..ad5f011afb 100644
--- a/src/content/reference/en/p5/createElement.mdx
+++ b/src/content/reference/en/p5/createElement.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L2493
title: createElement
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createFileInput.mdx b/src/content/reference/en/p5/createFileInput.mdx
index 742f868a0b..b9d4f61fa8 100644
--- a/src/content/reference/en/p5/createFileInput.mdx
+++ b/src/content/reference/en/p5/createFileInput.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L1942
title: createFileInput
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createFilterShader.mdx b/src/content/reference/en/p5/createFilterShader.mdx
index 3c9165bade..4be8bcc00a 100644
--- a/src/content/reference/en/p5/createFilterShader.mdx
+++ b/src/content/reference/en/p5/createFilterShader.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L540
title: createFilterShader
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/createFramebuffer.mdx b/src/content/reference/en/p5/createFramebuffer.mdx
index d145fc77ea..2daa8385e1 100644
--- a/src/content/reference/en/p5/createFramebuffer.mdx
+++ b/src/content/reference/en/p5/createFramebuffer.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/rendering.js#L495
title: createFramebuffer
module: Rendering
submodule: Rendering
diff --git a/src/content/reference/en/p5/createGraphics.mdx b/src/content/reference/en/p5/createGraphics.mdx
index 11a419ac38..566b980634 100644
--- a/src/content/reference/en/p5/createGraphics.mdx
+++ b/src/content/reference/en/p5/createGraphics.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/rendering.js#L370
title: createGraphics
module: Rendering
submodule: Rendering
diff --git a/src/content/reference/en/p5/createImage.mdx b/src/content/reference/en/p5/createImage.mdx
index 405935d864..cb2ae4bf6b 100644
--- a/src/content/reference/en/p5/createImage.mdx
+++ b/src/content/reference/en/p5/createImage.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/image.js#L15
title: createImage
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5/createImg.mdx b/src/content/reference/en/p5/createImg.mdx
index 953f060c67..1158dd26d8 100644
--- a/src/content/reference/en/p5/createImg.mdx
+++ b/src/content/reference/en/p5/createImg.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L649
title: createImg
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createInput.mdx b/src/content/reference/en/p5/createInput.mdx
index c216fce18f..2dc64f1c73 100644
--- a/src/content/reference/en/p5/createInput.mdx
+++ b/src/content/reference/en/p5/createInput.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L1859
title: createInput
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createModel.mdx b/src/content/reference/en/p5/createModel.mdx
index 6ba33e4a9d..ba293d9fda 100644
--- a/src/content/reference/en/p5/createModel.mdx
+++ b/src/content/reference/en/p5/createModel.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/loading.js#L1134
title: createModel
module: Shape
submodule: 3D Models
diff --git a/src/content/reference/en/p5/createNumberDict.mdx b/src/content/reference/en/p5/createNumberDict.mdx
index d4a27f2abe..e934f8e4e1 100644
--- a/src/content/reference/en/p5/createNumberDict.mdx
+++ b/src/content/reference/en/p5/createNumberDict.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L48
title: createNumberDict
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5/createP.mdx b/src/content/reference/en/p5/createP.mdx
index 851e7ded92..09c926b645 100644
--- a/src/content/reference/en/p5/createP.mdx
+++ b/src/content/reference/en/p5/createP.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L543
title: createP
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createRadio.mdx b/src/content/reference/en/p5/createRadio.mdx
index 317c70497e..2b0333cbc6 100644
--- a/src/content/reference/en/p5/createRadio.mdx
+++ b/src/content/reference/en/p5/createRadio.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L1440
title: createRadio
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createSelect.mdx b/src/content/reference/en/p5/createSelect.mdx
index ebe2047ebb..3d89593c6f 100644
--- a/src/content/reference/en/p5/createSelect.mdx
+++ b/src/content/reference/en/p5/createSelect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L1159
title: createSelect
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createShader.mdx b/src/content/reference/en/p5/createShader.mdx
index 2759909a01..b2bd5232e9 100644
--- a/src/content/reference/en/p5/createShader.mdx
+++ b/src/content/reference/en/p5/createShader.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L173
title: createShader
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/createSlider.mdx b/src/content/reference/en/p5/createSlider.mdx
index a38232f3b5..8b3d842f24 100644
--- a/src/content/reference/en/p5/createSlider.mdx
+++ b/src/content/reference/en/p5/createSlider.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L789
title: createSlider
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createSpan.mdx b/src/content/reference/en/p5/createSpan.mdx
index 6ccc331a99..14b1d1d13a 100644
--- a/src/content/reference/en/p5/createSpan.mdx
+++ b/src/content/reference/en/p5/createSpan.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L578
title: createSpan
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createStringDict.mdx b/src/content/reference/en/p5/createStringDict.mdx
index 8601f498b4..8927b35710 100644
--- a/src/content/reference/en/p5/createStringDict.mdx
+++ b/src/content/reference/en/p5/createStringDict.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L14
title: createStringDict
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5/createVector.mdx b/src/content/reference/en/p5/createVector.mdx
index 2d6e301b71..c99102ae53 100644
--- a/src/content/reference/en/p5/createVector.mdx
+++ b/src/content/reference/en/p5/createVector.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/math.js#L10
title: createVector
module: Math
submodule: Vector
diff --git a/src/content/reference/en/p5/createVideo.mdx b/src/content/reference/en/p5/createVideo.mdx
index 820866af2e..2b82fbfe77 100644
--- a/src/content/reference/en/p5/createVideo.mdx
+++ b/src/content/reference/en/p5/createVideo.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L2115
title: createVideo
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/createWriter.mdx b/src/content/reference/en/p5/createWriter.mdx
index 3a5cc7f838..0fb610132c 100644
--- a/src/content/reference/en/p5/createWriter.mdx
+++ b/src/content/reference/en/p5/createWriter.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L1444
title: createWriter
module: IO
submodule: Output
diff --git a/src/content/reference/en/p5/cursor.mdx b/src/content/reference/en/p5/cursor.mdx
index d2ec7cc68d..30d30f95c5 100644
--- a/src/content/reference/en/p5/cursor.mdx
+++ b/src/content/reference/en/p5/cursor.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L209
title: cursor
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/curve.mdx b/src/content/reference/en/p5/curve.mdx
index 2f99993a19..ff7c09f629 100644
--- a/src/content/reference/en/p5/curve.mdx
+++ b/src/content/reference/en/p5/curve.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/curves.js#L570
title: curve
module: Shape
submodule: Curves
diff --git a/src/content/reference/en/p5/curveDetail.mdx b/src/content/reference/en/p5/curveDetail.mdx
index ae3f11767f..fbdc69d58e 100644
--- a/src/content/reference/en/p5/curveDetail.mdx
+++ b/src/content/reference/en/p5/curveDetail.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/curves.js#L772
title: curveDetail
module: Shape
submodule: Curves
diff --git a/src/content/reference/en/p5/curvePoint.mdx b/src/content/reference/en/p5/curvePoint.mdx
index 46e6e5c840..e69390658a 100644
--- a/src/content/reference/en/p5/curvePoint.mdx
+++ b/src/content/reference/en/p5/curvePoint.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/curves.js#L930
title: curvePoint
module: Shape
submodule: Curves
diff --git a/src/content/reference/en/p5/curveTangent.mdx b/src/content/reference/en/p5/curveTangent.mdx
index 39bb44e7ef..d2e84be028 100644
--- a/src/content/reference/en/p5/curveTangent.mdx
+++ b/src/content/reference/en/p5/curveTangent.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/curves.js#L1054
title: curveTangent
module: Shape
submodule: Curves
diff --git a/src/content/reference/en/p5/curveTightness.mdx b/src/content/reference/en/p5/curveTightness.mdx
index bcdbd3fa20..a5fa09de94 100644
--- a/src/content/reference/en/p5/curveTightness.mdx
+++ b/src/content/reference/en/p5/curveTightness.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/curves.js#L875
title: curveTightness
module: Shape
submodule: Curves
diff --git a/src/content/reference/en/p5/curveVertex.mdx b/src/content/reference/en/p5/curveVertex.mdx
index c424655ac4..7ef3c2426a 100644
--- a/src/content/reference/en/p5/curveVertex.mdx
+++ b/src/content/reference/en/p5/curveVertex.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/vertex.js#L832
title: curveVertex
module: Shape
submodule: Vertex
diff --git a/src/content/reference/en/p5/cylinder.mdx b/src/content/reference/en/p5/cylinder.mdx
index 8e8b78376e..0ce02228e2 100644
--- a/src/content/reference/en/p5/cylinder.mdx
+++ b/src/content/reference/en/p5/cylinder.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/3d_primitives.js#L1477
title: cylinder
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5/day.mdx b/src/content/reference/en/p5/day.mdx
index c463fc9657..c795b19ea0 100644
--- a/src/content/reference/en/p5/day.mdx
+++ b/src/content/reference/en/p5/day.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/time_date.js#L10
title: day
module: IO
submodule: Time & Date
diff --git a/src/content/reference/en/p5/debugMode.mdx b/src/content/reference/en/p5/debugMode.mdx
index ecc1bd80b2..3d4512d591 100644
--- a/src/content/reference/en/p5/debugMode.mdx
+++ b/src/content/reference/en/p5/debugMode.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/interaction.js#L471
title: debugMode
module: 3D
submodule: Interaction
diff --git a/src/content/reference/en/p5/degrees.mdx b/src/content/reference/en/p5/degrees.mdx
index a1e3e930ae..6d8a598035 100644
--- a/src/content/reference/en/p5/degrees.mdx
+++ b/src/content/reference/en/p5/degrees.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/trigonometry.js#L485
title: degrees
module: Math
submodule: Trigonometry
diff --git a/src/content/reference/en/p5/deltaTime.mdx b/src/content/reference/en/p5/deltaTime.mdx
index 363ac8c872..0b96bc3b9f 100644
--- a/src/content/reference/en/p5/deltaTime.mdx
+++ b/src/content/reference/en/p5/deltaTime.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L124
title: deltaTime
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/describe.mdx b/src/content/reference/en/p5/describe.mdx
index 248a628bb5..d8ad1e811a 100644
--- a/src/content/reference/en/p5/describe.mdx
+++ b/src/content/reference/en/p5/describe.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/accessibility/describe.js#L18
title: describe
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/describeElement.mdx b/src/content/reference/en/p5/describeElement.mdx
index 59cdbcc069..8c396795fd 100644
--- a/src/content/reference/en/p5/describeElement.mdx
+++ b/src/content/reference/en/p5/describeElement.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/accessibility/describe.js#L162
title: describeElement
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/deviceMoved.mdx b/src/content/reference/en/p5/deviceMoved.mdx
index f14052e071..f7fa3fbb2f 100644
--- a/src/content/reference/en/p5/deviceMoved.mdx
+++ b/src/content/reference/en/p5/deviceMoved.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L501
title: deviceMoved
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/deviceOrientation.mdx b/src/content/reference/en/p5/deviceOrientation.mdx
index 9c7c475354..752137d963 100644
--- a/src/content/reference/en/p5/deviceOrientation.mdx
+++ b/src/content/reference/en/p5/deviceOrientation.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L11
title: deviceOrientation
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/deviceShaken.mdx b/src/content/reference/en/p5/deviceShaken.mdx
index a1e6f57c73..dcfc70dbd8 100644
--- a/src/content/reference/en/p5/deviceShaken.mdx
+++ b/src/content/reference/en/p5/deviceShaken.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L589
title: deviceShaken
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/deviceTurned.mdx b/src/content/reference/en/p5/deviceTurned.mdx
index 356bf740a5..48d0453654 100644
--- a/src/content/reference/en/p5/deviceTurned.mdx
+++ b/src/content/reference/en/p5/deviceTurned.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L531
title: deviceTurned
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/directionalLight.mdx b/src/content/reference/en/p5/directionalLight.mdx
index 0ccf5ec2f2..e5dfee78f4 100644
--- a/src/content/reference/en/p5/directionalLight.mdx
+++ b/src/content/reference/en/p5/directionalLight.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/light.js#L461
title: directionalLight
module: 3D
submodule: Lights
diff --git a/src/content/reference/en/p5/disableFriendlyErrors.mdx b/src/content/reference/en/p5/disableFriendlyErrors.mdx
index 0863c54482..a4a914af30 100644
--- a/src/content/reference/en/p5/disableFriendlyErrors.mdx
+++ b/src/content/reference/en/p5/disableFriendlyErrors.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/main.js#L872
title: disableFriendlyErrors
module: Structure
submodule: Structure
diff --git a/src/content/reference/en/p5/displayDensity.mdx b/src/content/reference/en/p5/displayDensity.mdx
index cb00f50e08..c28192a7dd 100644
--- a/src/content/reference/en/p5/displayDensity.mdx
+++ b/src/content/reference/en/p5/displayDensity.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L1078
title: displayDensity
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/displayHeight.mdx b/src/content/reference/en/p5/displayHeight.mdx
index 2f353f6763..3e8709da2e 100644
--- a/src/content/reference/en/p5/displayHeight.mdx
+++ b/src/content/reference/en/p5/displayHeight.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L621
title: displayHeight
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/displayWidth.mdx b/src/content/reference/en/p5/displayWidth.mdx
index bcb4bb81dc..2e235e61f9 100644
--- a/src/content/reference/en/p5/displayWidth.mdx
+++ b/src/content/reference/en/p5/displayWidth.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L590
title: displayWidth
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/dist.mdx b/src/content/reference/en/p5/dist.mdx
index b30c37a6eb..e46d4f938f 100644
--- a/src/content/reference/en/p5/dist.mdx
+++ b/src/content/reference/en/p5/dist.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L155
title: dist
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/doubleClicked.mdx b/src/content/reference/en/p5/doubleClicked.mdx
index 336ad9d985..8c296cc948 100644
--- a/src/content/reference/en/p5/doubleClicked.mdx
+++ b/src/content/reference/en/p5/doubleClicked.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L1599
title: doubleClicked
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/draw.mdx b/src/content/reference/en/p5/draw.mdx
index 088c9df981..3257dfed47 100644
--- a/src/content/reference/en/p5/draw.mdx
+++ b/src/content/reference/en/p5/draw.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/main.js#L176
title: draw
module: Structure
submodule: Structure
diff --git a/src/content/reference/en/p5/drawingContext.mdx b/src/content/reference/en/p5/drawingContext.mdx
index 6438861809..42d1e28424 100644
--- a/src/content/reference/en/p5/drawingContext.mdx
+++ b/src/content/reference/en/p5/drawingContext.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/rendering.js#L1198
title: drawingContext
module: Rendering
submodule: Rendering
diff --git a/src/content/reference/en/p5/ellipse.mdx b/src/content/reference/en/p5/ellipse.mdx
index c3a4484c03..3588db8367 100644
--- a/src/content/reference/en/p5/ellipse.mdx
+++ b/src/content/reference/en/p5/ellipse.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/2d_primitives.js#L372
title: ellipse
module: Shape
submodule: 2D Primitives
diff --git a/src/content/reference/en/p5/ellipseMode.mdx b/src/content/reference/en/p5/ellipseMode.mdx
index 2b08a1fdb7..01f9002249 100644
--- a/src/content/reference/en/p5/ellipseMode.mdx
+++ b/src/content/reference/en/p5/ellipseMode.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/attributes.js#L12
title: ellipseMode
module: Shape
submodule: Attributes
diff --git a/src/content/reference/en/p5/ellipsoid.mdx b/src/content/reference/en/p5/ellipsoid.mdx
index 1d59230c71..269a018520 100644
--- a/src/content/reference/en/p5/ellipsoid.mdx
+++ b/src/content/reference/en/p5/ellipsoid.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/3d_primitives.js#L1965
title: ellipsoid
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5/emissiveMaterial.mdx b/src/content/reference/en/p5/emissiveMaterial.mdx
index ed60736948..41cd0e7bd6 100644
--- a/src/content/reference/en/p5/emissiveMaterial.mdx
+++ b/src/content/reference/en/p5/emissiveMaterial.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L2647
title: emissiveMaterial
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/endClip.mdx b/src/content/reference/en/p5/endClip.mdx
index 0e5d7b732d..0652909fd1 100644
--- a/src/content/reference/en/p5/endClip.mdx
+++ b/src/content/reference/en/p5/endClip.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/setting.js#L190
title: endClip
module: Color
submodule: Setting
diff --git a/src/content/reference/en/p5/endContour.mdx b/src/content/reference/en/p5/endContour.mdx
index cc90bfb85d..8f3403c831 100644
--- a/src/content/reference/en/p5/endContour.mdx
+++ b/src/content/reference/en/p5/endContour.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/vertex.js#L1224
title: endContour
module: Shape
submodule: Vertex
diff --git a/src/content/reference/en/p5/endGeometry.mdx b/src/content/reference/en/p5/endGeometry.mdx
index ce060d9e23..c57629d880 100644
--- a/src/content/reference/en/p5/endGeometry.mdx
+++ b/src/content/reference/en/p5/endGeometry.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/3d_primitives.js#L266
title: endGeometry
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5/endShape.mdx b/src/content/reference/en/p5/endShape.mdx
index b36801d297..4543e002b4 100644
--- a/src/content/reference/en/p5/endShape.mdx
+++ b/src/content/reference/en/p5/endShape.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/vertex.js#L1344
title: endShape
module: Shape
submodule: Vertex
diff --git a/src/content/reference/en/p5/erase.mdx b/src/content/reference/en/p5/erase.mdx
index 53f8d63985..94538df802 100644
--- a/src/content/reference/en/p5/erase.mdx
+++ b/src/content/reference/en/p5/erase.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/setting.js#L1591
title: erase
module: Color
submodule: Setting
diff --git a/src/content/reference/en/p5/exitPointerLock.mdx b/src/content/reference/en/p5/exitPointerLock.mdx
index ab1c971bef..16a0b05f29 100644
--- a/src/content/reference/en/p5/exitPointerLock.mdx
+++ b/src/content/reference/en/p5/exitPointerLock.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L1946
title: exitPointerLock
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/exp.mdx b/src/content/reference/en/p5/exp.mdx
index 796a639071..4259be3184 100644
--- a/src/content/reference/en/p5/exp.mdx
+++ b/src/content/reference/en/p5/exp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L230
title: exp
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/fill.mdx b/src/content/reference/en/p5/fill.mdx
index a06bd2f294..2d65f1a1d3 100644
--- a/src/content/reference/en/p5/fill.mdx
+++ b/src/content/reference/en/p5/fill.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/setting.js#L982
title: fill
module: Color
submodule: Setting
diff --git a/src/content/reference/en/p5/filter.mdx b/src/content/reference/en/p5/filter.mdx
index 9a58dabb73..6c0de931f1 100644
--- a/src/content/reference/en/p5/filter.mdx
+++ b/src/content/reference/en/p5/filter.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/pixels.js#L442
title: filter
module: Image
submodule: Pixels
diff --git a/src/content/reference/en/p5/float.mdx b/src/content/reference/en/p5/float.mdx
index 053a3475ea..b0bf5d3ece 100644
--- a/src/content/reference/en/p5/float.mdx
+++ b/src/content/reference/en/p5/float.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/conversion.js#L10
title: float
module: Data
submodule: Conversion
diff --git a/src/content/reference/en/p5/floor.mdx b/src/content/reference/en/p5/floor.mdx
index f1a03a22de..476c4a2473 100644
--- a/src/content/reference/en/p5/floor.mdx
+++ b/src/content/reference/en/p5/floor.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L294
title: floor
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/focused.mdx b/src/content/reference/en/p5/focused.mdx
index eb35842004..1420bf5cd2 100644
--- a/src/content/reference/en/p5/focused.mdx
+++ b/src/content/reference/en/p5/focused.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L174
title: focused
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/for.mdx b/src/content/reference/en/p5/for.mdx
index 65ced3c14c..4bfb6429d5 100644
--- a/src/content/reference/en/p5/for.mdx
+++ b/src/content/reference/en/p5/for.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/reference.js#L1648
title: for
module: Foundation
submodule: Foundation
diff --git a/src/content/reference/en/p5/fract.mdx b/src/content/reference/en/p5/fract.mdx
index 61da23fcc5..ab59d2b5c3 100644
--- a/src/content/reference/en/p5/fract.mdx
+++ b/src/content/reference/en/p5/fract.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L1048
title: fract
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/frameCount.mdx b/src/content/reference/en/p5/frameCount.mdx
index 3ec8ab1bdd..c10ad4ddfc 100644
--- a/src/content/reference/en/p5/frameCount.mdx
+++ b/src/content/reference/en/p5/frameCount.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L69
title: frameCount
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/frameRate.mdx b/src/content/reference/en/p5/frameRate.mdx
index 63cef18ac0..a386321361 100644
--- a/src/content/reference/en/p5/frameRate.mdx
+++ b/src/content/reference/en/p5/frameRate.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L330
title: frameRate
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/freeGeometry.mdx b/src/content/reference/en/p5/freeGeometry.mdx
index a106d12357..134eb3c8fc 100644
--- a/src/content/reference/en/p5/freeGeometry.mdx
+++ b/src/content/reference/en/p5/freeGeometry.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/3d_primitives.js#L748
title: freeGeometry
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5/freqToMidi.mdx b/src/content/reference/en/p5/freqToMidi.mdx
index f4a0186c17..ed4fa0af34 100644
--- a/src/content/reference/en/p5/freqToMidi.mdx
+++ b/src/content/reference/en/p5/freqToMidi.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L825
title: freqToMidi
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5/frustum.mdx b/src/content/reference/en/p5/frustum.mdx
index fb8968787d..f135f5dd17 100644
--- a/src/content/reference/en/p5/frustum.mdx
+++ b/src/content/reference/en/p5/frustum.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L522
title: frustum
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5/fullscreen.mdx b/src/content/reference/en/p5/fullscreen.mdx
index fd29211a86..ffdddc11c3 100644
--- a/src/content/reference/en/p5/fullscreen.mdx
+++ b/src/content/reference/en/p5/fullscreen.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L950
title: fullscreen
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/function.mdx b/src/content/reference/en/p5/function.mdx
index 76f6a9d676..b56060c055 100644
--- a/src/content/reference/en/p5/function.mdx
+++ b/src/content/reference/en/p5/function.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/reference.js#L317
title: function
module: Foundation
submodule: Foundation
diff --git a/src/content/reference/en/p5/get.mdx b/src/content/reference/en/p5/get.mdx
index acd34d03aa..0ec06cf0a6 100644
--- a/src/content/reference/en/p5/get.mdx
+++ b/src/content/reference/en/p5/get.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/pixels.js#L820
title: get
module: Image
submodule: Pixels
diff --git a/src/content/reference/en/p5/getAudioContext.mdx b/src/content/reference/en/p5/getAudioContext.mdx
index 51e56ffb2c..3802912197 100644
--- a/src/content/reference/en/p5/getAudioContext.mdx
+++ b/src/content/reference/en/p5/getAudioContext.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L159
title: getAudioContext
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5/getItem.mdx b/src/content/reference/en/p5/getItem.mdx
index aecd5fee77..450d07946f 100644
--- a/src/content/reference/en/p5/getItem.mdx
+++ b/src/content/reference/en/p5/getItem.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/local_storage.js#L164
title: getItem
module: Data
submodule: LocalStorage
diff --git a/src/content/reference/en/p5/getOutputVolume.mdx b/src/content/reference/en/p5/getOutputVolume.mdx
index 4b74a2d1f7..341fffc613 100644
--- a/src/content/reference/en/p5/getOutputVolume.mdx
+++ b/src/content/reference/en/p5/getOutputVolume.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L726
title: getOutputVolume
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5/getTargetFrameRate.mdx b/src/content/reference/en/p5/getTargetFrameRate.mdx
index 9333dec8b0..4262704d2f 100644
--- a/src/content/reference/en/p5/getTargetFrameRate.mdx
+++ b/src/content/reference/en/p5/getTargetFrameRate.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L447
title: getTargetFrameRate
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/getURL.mdx b/src/content/reference/en/p5/getURL.mdx
index 10186e38f2..7d22b66d2a 100644
--- a/src/content/reference/en/p5/getURL.mdx
+++ b/src/content/reference/en/p5/getURL.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L1149
title: getURL
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/getURLParams.mdx b/src/content/reference/en/p5/getURLParams.mdx
index c7661b7f34..fabd3be618 100644
--- a/src/content/reference/en/p5/getURLParams.mdx
+++ b/src/content/reference/en/p5/getURLParams.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L1208
title: getURLParams
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/getURLPath.mdx b/src/content/reference/en/p5/getURLPath.mdx
index bf8b52ccae..4beb9af386 100644
--- a/src/content/reference/en/p5/getURLPath.mdx
+++ b/src/content/reference/en/p5/getURLPath.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L1175
title: getURLPath
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/green.mdx b/src/content/reference/en/p5/green.mdx
index 5aee8b7de1..2261e403ed 100644
--- a/src/content/reference/en/p5/green.mdx
+++ b/src/content/reference/en/p5/green.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/creating_reading.js#L692
title: green
module: Color
submodule: Creating & Reading
diff --git a/src/content/reference/en/p5/gridOutput.mdx b/src/content/reference/en/p5/gridOutput.mdx
index ad28c60a0f..b3e21d1ac3 100644
--- a/src/content/reference/en/p5/gridOutput.mdx
+++ b/src/content/reference/en/p5/gridOutput.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/accessibility/outputs.js#L144
title: gridOutput
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/height.mdx b/src/content/reference/en/p5/height.mdx
index ef09c30ec9..084d498ba5 100644
--- a/src/content/reference/en/p5/height.mdx
+++ b/src/content/reference/en/p5/height.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L881
title: height
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/hex.mdx b/src/content/reference/en/p5/hex.mdx
index 97d3fd9145..a09d531055 100644
--- a/src/content/reference/en/p5/hex.mdx
+++ b/src/content/reference/en/p5/hex.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/conversion.js#L818
title: hex
module: Data
submodule: Conversion
diff --git a/src/content/reference/en/p5/hour.mdx b/src/content/reference/en/p5/hour.mdx
index e7139a59dd..79c9252c14 100644
--- a/src/content/reference/en/p5/hour.mdx
+++ b/src/content/reference/en/p5/hour.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/time_date.js#L44
title: hour
module: IO
submodule: Time & Date
diff --git a/src/content/reference/en/p5/httpDo.mdx b/src/content/reference/en/p5/httpDo.mdx
index f9eff51f73..a1d295daf3 100644
--- a/src/content/reference/en/p5/httpDo.mdx
+++ b/src/content/reference/en/p5/httpDo.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L1208
title: httpDo
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5/httpGet.mdx b/src/content/reference/en/p5/httpGet.mdx
index 6bdfcc1f9e..9d7c89dbc8 100644
--- a/src/content/reference/en/p5/httpGet.mdx
+++ b/src/content/reference/en/p5/httpGet.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L1043
title: httpGet
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5/httpPost.mdx b/src/content/reference/en/p5/httpPost.mdx
index 723f789f21..ede76f63b0 100644
--- a/src/content/reference/en/p5/httpPost.mdx
+++ b/src/content/reference/en/p5/httpPost.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L1119
title: httpPost
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5/hue.mdx b/src/content/reference/en/p5/hue.mdx
index af5861e635..8433acdeb1 100644
--- a/src/content/reference/en/p5/hue.mdx
+++ b/src/content/reference/en/p5/hue.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/creating_reading.js#L828
title: hue
module: Color
submodule: Creating & Reading
diff --git a/src/content/reference/en/p5/if.mdx b/src/content/reference/en/p5/if.mdx
index b2767a585a..15ba59f839 100644
--- a/src/content/reference/en/p5/if.mdx
+++ b/src/content/reference/en/p5/if.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/reference.js#L110
title: if
module: Foundation
submodule: Foundation
diff --git a/src/content/reference/en/p5/image.mdx b/src/content/reference/en/p5/image.mdx
index f59fec88d3..358e0e7872 100644
--- a/src/content/reference/en/p5/image.mdx
+++ b/src/content/reference/en/p5/image.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/loading_displaying.js#L888
title: image
module: Image
submodule: Loading & Displaying
diff --git a/src/content/reference/en/p5/imageLight.mdx b/src/content/reference/en/p5/imageLight.mdx
index d13c6bdab7..4180559219 100644
--- a/src/content/reference/en/p5/imageLight.mdx
+++ b/src/content/reference/en/p5/imageLight.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/light.js#L956
title: imageLight
module: 3D
submodule: Lights
diff --git a/src/content/reference/en/p5/imageMode.mdx b/src/content/reference/en/p5/imageMode.mdx
index f8242c93de..07f6ca3c1c 100644
--- a/src/content/reference/en/p5/imageMode.mdx
+++ b/src/content/reference/en/p5/imageMode.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/loading_displaying.js#L1395
title: imageMode
module: Image
submodule: Loading & Displaying
diff --git a/src/content/reference/en/p5/input.mdx b/src/content/reference/en/p5/input.mdx
index 5bf822cac0..048387e75a 100644
--- a/src/content/reference/en/p5/input.mdx
+++ b/src/content/reference/en/p5/input.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L405
title: input
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/int.mdx b/src/content/reference/en/p5/int.mdx
index 91fe84fd3d..32187c3779 100644
--- a/src/content/reference/en/p5/int.mdx
+++ b/src/content/reference/en/p5/int.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/conversion.js#L92
title: int
module: Data
submodule: Conversion
diff --git a/src/content/reference/en/p5/isLooping.mdx b/src/content/reference/en/p5/isLooping.mdx
index 04111096f4..be914d9bf7 100644
--- a/src/content/reference/en/p5/isLooping.mdx
+++ b/src/content/reference/en/p5/isLooping.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/structure.js#L224
title: isLooping
module: Structure
submodule: Structure
diff --git a/src/content/reference/en/p5/join.mdx b/src/content/reference/en/p5/join.mdx
index de68343db9..7902008371 100644
--- a/src/content/reference/en/p5/join.mdx
+++ b/src/content/reference/en/p5/join.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/string_functions.js#L15
title: join
module: Data
submodule: String Functions
diff --git a/src/content/reference/en/p5/key.mdx b/src/content/reference/en/p5/key.mdx
index 505310313d..dc8f55e9d7 100644
--- a/src/content/reference/en/p5/key.mdx
+++ b/src/content/reference/en/p5/key.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/keyboard.js#L102
title: key
module: Events
submodule: Keyboard
diff --git a/src/content/reference/en/p5/keyCode.mdx b/src/content/reference/en/p5/keyCode.mdx
index 4505ec335f..340513651b 100644
--- a/src/content/reference/en/p5/keyCode.mdx
+++ b/src/content/reference/en/p5/keyCode.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/keyboard.js#L184
title: keyCode
module: Events
submodule: Keyboard
diff --git a/src/content/reference/en/p5/keyIsDown.mdx b/src/content/reference/en/p5/keyIsDown.mdx
index ae0daf9882..671c501a9c 100644
--- a/src/content/reference/en/p5/keyIsDown.mdx
+++ b/src/content/reference/en/p5/keyIsDown.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/keyboard.js#L811
title: keyIsDown
module: Events
submodule: Keyboard
diff --git a/src/content/reference/en/p5/keyIsPressed.mdx b/src/content/reference/en/p5/keyIsPressed.mdx
index accc45a4cb..ad8c7c5a25 100644
--- a/src/content/reference/en/p5/keyIsPressed.mdx
+++ b/src/content/reference/en/p5/keyIsPressed.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/keyboard.js#L10
title: keyIsPressed
module: Events
submodule: Keyboard
diff --git a/src/content/reference/en/p5/keyPressed.mdx b/src/content/reference/en/p5/keyPressed.mdx
index 3f70d8f1fd..5bb054791a 100644
--- a/src/content/reference/en/p5/keyPressed.mdx
+++ b/src/content/reference/en/p5/keyPressed.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/keyboard.js#L284
title: keyPressed
module: Events
submodule: Keyboard
diff --git a/src/content/reference/en/p5/keyReleased.mdx b/src/content/reference/en/p5/keyReleased.mdx
index 85b67fe115..93f240aa98 100644
--- a/src/content/reference/en/p5/keyReleased.mdx
+++ b/src/content/reference/en/p5/keyReleased.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/keyboard.js#L474
title: keyReleased
module: Events
submodule: Keyboard
diff --git a/src/content/reference/en/p5/keyTyped.mdx b/src/content/reference/en/p5/keyTyped.mdx
index a13b2197b2..ee52ca877f 100644
--- a/src/content/reference/en/p5/keyTyped.mdx
+++ b/src/content/reference/en/p5/keyTyped.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/keyboard.js#L655
title: keyTyped
module: Events
submodule: Keyboard
diff --git a/src/content/reference/en/p5/lerp.mdx b/src/content/reference/en/p5/lerp.mdx
index 81e57410e1..164d2f6007 100644
--- a/src/content/reference/en/p5/lerp.mdx
+++ b/src/content/reference/en/p5/lerp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L332
title: lerp
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/lerpColor.mdx b/src/content/reference/en/p5/lerpColor.mdx
index 65ff7cb9cc..119845b7d9 100644
--- a/src/content/reference/en/p5/lerpColor.mdx
+++ b/src/content/reference/en/p5/lerpColor.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/creating_reading.js#L949
title: lerpColor
module: Color
submodule: Creating & Reading
diff --git a/src/content/reference/en/p5/let.mdx b/src/content/reference/en/p5/let.mdx
index 6c6736f5f3..b32adfeecb 100644
--- a/src/content/reference/en/p5/let.mdx
+++ b/src/content/reference/en/p5/let.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/reference.js#L7
title: let
module: Foundation
submodule: Foundation
diff --git a/src/content/reference/en/p5/lightFalloff.mdx b/src/content/reference/en/p5/lightFalloff.mdx
index f91d96da6d..3899a3d0ee 100644
--- a/src/content/reference/en/p5/lightFalloff.mdx
+++ b/src/content/reference/en/p5/lightFalloff.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/light.js#L1161
title: lightFalloff
module: 3D
submodule: Lights
diff --git a/src/content/reference/en/p5/lightness.mdx b/src/content/reference/en/p5/lightness.mdx
index de4dbf41bc..5698c93c21 100644
--- a/src/content/reference/en/p5/lightness.mdx
+++ b/src/content/reference/en/p5/lightness.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/creating_reading.js#L1134
title: lightness
module: Color
submodule: Creating & Reading
diff --git a/src/content/reference/en/p5/lights.mdx b/src/content/reference/en/p5/lights.mdx
index be7cd5138a..54543a7539 100644
--- a/src/content/reference/en/p5/lights.mdx
+++ b/src/content/reference/en/p5/lights.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/light.js#L1077
title: lights
module: 3D
submodule: Lights
diff --git a/src/content/reference/en/p5/line.mdx b/src/content/reference/en/p5/line.mdx
index e88a292297..ebc594461b 100644
--- a/src/content/reference/en/p5/line.mdx
+++ b/src/content/reference/en/p5/line.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/2d_primitives.js#L565
title: line
module: Shape
submodule: 2D Primitives
diff --git a/src/content/reference/en/p5/linePerspective.mdx b/src/content/reference/en/p5/linePerspective.mdx
index bd63eedbba..3a4cc6a598 100644
--- a/src/content/reference/en/p5/linePerspective.mdx
+++ b/src/content/reference/en/p5/linePerspective.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L280
title: linePerspective
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5/loadBytes.mdx b/src/content/reference/en/p5/loadBytes.mdx
index a7e9fe79ab..569b932edf 100644
--- a/src/content/reference/en/p5/loadBytes.mdx
+++ b/src/content/reference/en/p5/loadBytes.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L986
title: loadBytes
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5/loadFont.mdx b/src/content/reference/en/p5/loadFont.mdx
index 70bb37ce71..cfd219165d 100644
--- a/src/content/reference/en/p5/loadFont.mdx
+++ b/src/content/reference/en/p5/loadFont.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/typography/loading_displaying.js#L16
title: loadFont
module: Typography
submodule: Loading & Displaying
diff --git a/src/content/reference/en/p5/loadImage.mdx b/src/content/reference/en/p5/loadImage.mdx
index 0c55e7590b..3cd8c73249 100644
--- a/src/content/reference/en/p5/loadImage.mdx
+++ b/src/content/reference/en/p5/loadImage.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/loading_displaying.js#L18
title: loadImage
module: Image
submodule: Loading & Displaying
diff --git a/src/content/reference/en/p5/loadJSON.mdx b/src/content/reference/en/p5/loadJSON.mdx
index aa2851befb..aad4dcfa95 100644
--- a/src/content/reference/en/p5/loadJSON.mdx
+++ b/src/content/reference/en/p5/loadJSON.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L17
title: loadJSON
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5/loadModel.mdx b/src/content/reference/en/p5/loadModel.mdx
index 9c34c265db..1fa6b70cd7 100644
--- a/src/content/reference/en/p5/loadModel.mdx
+++ b/src/content/reference/en/p5/loadModel.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/loading.js#L13
title: loadModel
module: Shape
submodule: 3D Models
diff --git a/src/content/reference/en/p5/loadPixels.mdx b/src/content/reference/en/p5/loadPixels.mdx
index 896e9e0b05..85478670ee 100644
--- a/src/content/reference/en/p5/loadPixels.mdx
+++ b/src/content/reference/en/p5/loadPixels.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/pixels.js#L946
title: loadPixels
module: Image
submodule: Pixels
diff --git a/src/content/reference/en/p5/loadShader.mdx b/src/content/reference/en/p5/loadShader.mdx
index fee3d6af1c..952658793b 100644
--- a/src/content/reference/en/p5/loadShader.mdx
+++ b/src/content/reference/en/p5/loadShader.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L12
title: loadShader
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/loadSound.mdx b/src/content/reference/en/p5/loadSound.mdx
index 65c460de2f..170b6ea5c4 100644
--- a/src/content/reference/en/p5/loadSound.mdx
+++ b/src/content/reference/en/p5/loadSound.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L2946
title: loadSound
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5/loadStrings.mdx b/src/content/reference/en/p5/loadStrings.mdx
index 8bca43268b..0967d18922 100644
--- a/src/content/reference/en/p5/loadStrings.mdx
+++ b/src/content/reference/en/p5/loadStrings.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L309
title: loadStrings
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5/loadTable.mdx b/src/content/reference/en/p5/loadTable.mdx
index bbb05cfc2f..90e5cc499e 100644
--- a/src/content/reference/en/p5/loadTable.mdx
+++ b/src/content/reference/en/p5/loadTable.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L505
title: loadTable
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5/loadXML.mdx b/src/content/reference/en/p5/loadXML.mdx
index a7de68ede9..72092d5c1b 100644
--- a/src/content/reference/en/p5/loadXML.mdx
+++ b/src/content/reference/en/p5/loadXML.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L780
title: loadXML
module: IO
submodule: Input
diff --git a/src/content/reference/en/p5/log.mdx b/src/content/reference/en/p5/log.mdx
index 8d4bcb380e..d0cecae783 100644
--- a/src/content/reference/en/p5/log.mdx
+++ b/src/content/reference/en/p5/log.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L423
title: log
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/loop.mdx b/src/content/reference/en/p5/loop.mdx
index 9c5bafe847..5c8edbe64a 100644
--- a/src/content/reference/en/p5/loop.mdx
+++ b/src/content/reference/en/p5/loop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/structure.js#L127
title: loop
module: Structure
submodule: Structure
diff --git a/src/content/reference/en/p5/mag.mdx b/src/content/reference/en/p5/mag.mdx
index 0a4d83d563..37c634bde9 100644
--- a/src/content/reference/en/p5/mag.mdx
+++ b/src/content/reference/en/p5/mag.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L481
title: mag
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/map.mdx b/src/content/reference/en/p5/map.mdx
index 8d2c1fd028..9f6730e943 100644
--- a/src/content/reference/en/p5/map.mdx
+++ b/src/content/reference/en/p5/map.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L534
title: map
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/match.mdx b/src/content/reference/en/p5/match.mdx
index 4181e13e82..4de85087a7 100644
--- a/src/content/reference/en/p5/match.mdx
+++ b/src/content/reference/en/p5/match.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/string_functions.js#L60
title: match
module: Data
submodule: String Functions
diff --git a/src/content/reference/en/p5/matchAll.mdx b/src/content/reference/en/p5/matchAll.mdx
index a2428327e7..73c4738538 100644
--- a/src/content/reference/en/p5/matchAll.mdx
+++ b/src/content/reference/en/p5/matchAll.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/string_functions.js#L119
title: matchAll
module: Data
submodule: String Functions
diff --git a/src/content/reference/en/p5/max.mdx b/src/content/reference/en/p5/max.mdx
index ce5e03248a..c99d909ef3 100644
--- a/src/content/reference/en/p5/max.mdx
+++ b/src/content/reference/en/p5/max.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L618
title: max
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/metalness.mdx b/src/content/reference/en/p5/metalness.mdx
index 32459bdf91..87553876d5 100644
--- a/src/content/reference/en/p5/metalness.mdx
+++ b/src/content/reference/en/p5/metalness.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L3069
title: metalness
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/midiToFreq.mdx b/src/content/reference/en/p5/midiToFreq.mdx
index 6c4201419d..6288e6e4d0 100644
--- a/src/content/reference/en/p5/midiToFreq.mdx
+++ b/src/content/reference/en/p5/midiToFreq.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L841
title: midiToFreq
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5/millis.mdx b/src/content/reference/en/p5/millis.mdx
index f8f547ec50..e5dc39153d 100644
--- a/src/content/reference/en/p5/millis.mdx
+++ b/src/content/reference/en/p5/millis.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/time_date.js#L112
title: millis
module: IO
submodule: Time & Date
diff --git a/src/content/reference/en/p5/min.mdx b/src/content/reference/en/p5/min.mdx
index 8620796010..45fc6f84bd 100644
--- a/src/content/reference/en/p5/min.mdx
+++ b/src/content/reference/en/p5/min.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L695
title: min
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/minute.mdx b/src/content/reference/en/p5/minute.mdx
index 5236556a76..c2e462bdf4 100644
--- a/src/content/reference/en/p5/minute.mdx
+++ b/src/content/reference/en/p5/minute.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/time_date.js#L78
title: minute
module: IO
submodule: Time & Date
diff --git a/src/content/reference/en/p5/model.mdx b/src/content/reference/en/p5/model.mdx
index 981de3bf09..adc335e395 100644
--- a/src/content/reference/en/p5/model.mdx
+++ b/src/content/reference/en/p5/model.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/loading.js#L993
title: model
module: Shape
submodule: 3D Models
diff --git a/src/content/reference/en/p5/month.mdx b/src/content/reference/en/p5/month.mdx
index a6de123171..9e99572214 100644
--- a/src/content/reference/en/p5/month.mdx
+++ b/src/content/reference/en/p5/month.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/time_date.js#L242
title: month
module: IO
submodule: Time & Date
diff --git a/src/content/reference/en/p5/mouseButton.mdx b/src/content/reference/en/p5/mouseButton.mdx
index b479078a02..f3301586b7 100644
--- a/src/content/reference/en/p5/mouseButton.mdx
+++ b/src/content/reference/en/p5/mouseButton.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L687
title: mouseButton
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/mouseClicked.mdx b/src/content/reference/en/p5/mouseClicked.mdx
index 76903e7c5d..fc4402acd9 100644
--- a/src/content/reference/en/p5/mouseClicked.mdx
+++ b/src/content/reference/en/p5/mouseClicked.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L1443
title: mouseClicked
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/mouseDragged.mdx b/src/content/reference/en/p5/mouseDragged.mdx
index 5a006e179d..9c35ede2b3 100644
--- a/src/content/reference/en/p5/mouseDragged.mdx
+++ b/src/content/reference/en/p5/mouseDragged.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L982
title: mouseDragged
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/mouseIsPressed.mdx b/src/content/reference/en/p5/mouseIsPressed.mdx
index c245d6bcce..77b978943c 100644
--- a/src/content/reference/en/p5/mouseIsPressed.mdx
+++ b/src/content/reference/en/p5/mouseIsPressed.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L755
title: mouseIsPressed
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/mouseMoved.mdx b/src/content/reference/en/p5/mouseMoved.mdx
index f91d296f03..1f06bde5ac 100644
--- a/src/content/reference/en/p5/mouseMoved.mdx
+++ b/src/content/reference/en/p5/mouseMoved.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L896
title: mouseMoved
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/mousePressed.mdx b/src/content/reference/en/p5/mousePressed.mdx
index a86ee922d2..e31a2497da 100644
--- a/src/content/reference/en/p5/mousePressed.mdx
+++ b/src/content/reference/en/p5/mousePressed.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L1098
title: mousePressed
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/mouseReleased.mdx b/src/content/reference/en/p5/mouseReleased.mdx
index 1aef84b8cd..99e3a3b469 100644
--- a/src/content/reference/en/p5/mouseReleased.mdx
+++ b/src/content/reference/en/p5/mouseReleased.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L1270
title: mouseReleased
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/mouseWheel.mdx b/src/content/reference/en/p5/mouseWheel.mdx
index 0657899586..1697eaa1f5 100644
--- a/src/content/reference/en/p5/mouseWheel.mdx
+++ b/src/content/reference/en/p5/mouseWheel.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L1746
title: mouseWheel
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/mouseX.mdx b/src/content/reference/en/p5/mouseX.mdx
index b70ce67e42..12726d72fc 100644
--- a/src/content/reference/en/p5/mouseX.mdx
+++ b/src/content/reference/en/p5/mouseX.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L119
title: mouseX
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/mouseY.mdx b/src/content/reference/en/p5/mouseY.mdx
index f8d5ac7305..a1d59e48ea 100644
--- a/src/content/reference/en/p5/mouseY.mdx
+++ b/src/content/reference/en/p5/mouseY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L226
title: mouseY
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/movedX.mdx b/src/content/reference/en/p5/movedX.mdx
index 4e25dbd4bb..600627ff01 100644
--- a/src/content/reference/en/p5/movedX.mdx
+++ b/src/content/reference/en/p5/movedX.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L12
title: movedX
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/movedY.mdx b/src/content/reference/en/p5/movedY.mdx
index 17035516ff..f4ed7664f4 100644
--- a/src/content/reference/en/p5/movedY.mdx
+++ b/src/content/reference/en/p5/movedY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L62
title: movedY
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/nf.mdx b/src/content/reference/en/p5/nf.mdx
index b17754131c..a6d064c7f8 100644
--- a/src/content/reference/en/p5/nf.mdx
+++ b/src/content/reference/en/p5/nf.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/string_functions.js#L199
title: nf
module: Data
submodule: String Functions
diff --git a/src/content/reference/en/p5/nfc.mdx b/src/content/reference/en/p5/nfc.mdx
index 18fb35b2d7..512e537ff8 100644
--- a/src/content/reference/en/p5/nfc.mdx
+++ b/src/content/reference/en/p5/nfc.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/string_functions.js#L322
title: nfc
module: Data
submodule: String Functions
diff --git a/src/content/reference/en/p5/nfp.mdx b/src/content/reference/en/p5/nfp.mdx
index e08dbb4784..e03e483c36 100644
--- a/src/content/reference/en/p5/nfp.mdx
+++ b/src/content/reference/en/p5/nfp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/string_functions.js#L447
title: nfp
module: Data
submodule: String Functions
diff --git a/src/content/reference/en/p5/nfs.mdx b/src/content/reference/en/p5/nfs.mdx
index f1763d8d9d..b037779654 100644
--- a/src/content/reference/en/p5/nfs.mdx
+++ b/src/content/reference/en/p5/nfs.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/string_functions.js#L573
title: nfs
module: Data
submodule: String Functions
diff --git a/src/content/reference/en/p5/noCanvas.mdx b/src/content/reference/en/p5/noCanvas.mdx
index fd74ed96d2..0dbb1cbd0e 100644
--- a/src/content/reference/en/p5/noCanvas.mdx
+++ b/src/content/reference/en/p5/noCanvas.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/rendering.js#L346
title: noCanvas
module: Rendering
submodule: Rendering
diff --git a/src/content/reference/en/p5/noCursor.mdx b/src/content/reference/en/p5/noCursor.mdx
index 5b744c9aca..37aff99125 100644
--- a/src/content/reference/en/p5/noCursor.mdx
+++ b/src/content/reference/en/p5/noCursor.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L482
title: noCursor
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/noDebugMode.mdx b/src/content/reference/en/p5/noDebugMode.mdx
index 2fbe28b5b6..3205644289 100644
--- a/src/content/reference/en/p5/noDebugMode.mdx
+++ b/src/content/reference/en/p5/noDebugMode.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/interaction.js#L725
title: noDebugMode
module: 3D
submodule: Interaction
diff --git a/src/content/reference/en/p5/noErase.mdx b/src/content/reference/en/p5/noErase.mdx
index 6971b2da66..82651de9fc 100644
--- a/src/content/reference/en/p5/noErase.mdx
+++ b/src/content/reference/en/p5/noErase.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/setting.js#L1678
title: noErase
module: Color
submodule: Setting
diff --git a/src/content/reference/en/p5/noFill.mdx b/src/content/reference/en/p5/noFill.mdx
index ee74aeb3d0..fddd963f79 100644
--- a/src/content/reference/en/p5/noFill.mdx
+++ b/src/content/reference/en/p5/noFill.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/setting.js#L1219
title: noFill
module: Color
submodule: Setting
diff --git a/src/content/reference/en/p5/noLights.mdx b/src/content/reference/en/p5/noLights.mdx
index 3453774298..d94cc4a6b8 100644
--- a/src/content/reference/en/p5/noLights.mdx
+++ b/src/content/reference/en/p5/noLights.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/light.js#L1687
title: noLights
module: 3D
submodule: Lights
diff --git a/src/content/reference/en/p5/noLoop.mdx b/src/content/reference/en/p5/noLoop.mdx
index aecb3667f5..c542455f64 100644
--- a/src/content/reference/en/p5/noLoop.mdx
+++ b/src/content/reference/en/p5/noLoop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/structure.js#L9
title: noLoop
module: Structure
submodule: Structure
diff --git a/src/content/reference/en/p5/noSmooth.mdx b/src/content/reference/en/p5/noSmooth.mdx
index 9e585a5351..aa420d7746 100644
--- a/src/content/reference/en/p5/noSmooth.mdx
+++ b/src/content/reference/en/p5/noSmooth.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/attributes.js#L100
title: noSmooth
module: Shape
submodule: Attributes
diff --git a/src/content/reference/en/p5/noStroke.mdx b/src/content/reference/en/p5/noStroke.mdx
index 535e1c93e2..5163d9f4f5 100644
--- a/src/content/reference/en/p5/noStroke.mdx
+++ b/src/content/reference/en/p5/noStroke.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/setting.js#L1279
title: noStroke
module: Color
submodule: Setting
diff --git a/src/content/reference/en/p5/noTint.mdx b/src/content/reference/en/p5/noTint.mdx
index 03d4a4d250..4691418fff 100644
--- a/src/content/reference/en/p5/noTint.mdx
+++ b/src/content/reference/en/p5/noTint.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/loading_displaying.js#L1345
title: noTint
module: Image
submodule: Loading & Displaying
diff --git a/src/content/reference/en/p5/noise.mdx b/src/content/reference/en/p5/noise.mdx
index 2d40fe144e..3a26628e48 100644
--- a/src/content/reference/en/p5/noise.mdx
+++ b/src/content/reference/en/p5/noise.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/noise.js#L36
title: noise
module: Math
submodule: Noise
diff --git a/src/content/reference/en/p5/noiseDetail.mdx b/src/content/reference/en/p5/noiseDetail.mdx
index 74c3432f8d..5cb1fcf598 100644
--- a/src/content/reference/en/p5/noiseDetail.mdx
+++ b/src/content/reference/en/p5/noiseDetail.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/noise.js#L331
title: noiseDetail
module: Math
submodule: Noise
diff --git a/src/content/reference/en/p5/noiseSeed.mdx b/src/content/reference/en/p5/noiseSeed.mdx
index 88e7f3429e..98c97aaeb7 100644
--- a/src/content/reference/en/p5/noiseSeed.mdx
+++ b/src/content/reference/en/p5/noiseSeed.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/noise.js#L405
title: noiseSeed
module: Math
submodule: Noise
diff --git a/src/content/reference/en/p5/norm.mdx b/src/content/reference/en/p5/norm.mdx
index 6df960fbc2..75b90e4a47 100644
--- a/src/content/reference/en/p5/norm.mdx
+++ b/src/content/reference/en/p5/norm.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L772
title: norm
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/normal.mdx b/src/content/reference/en/p5/normal.mdx
index d57cea43bc..b9406f8449 100644
--- a/src/content/reference/en/p5/normal.mdx
+++ b/src/content/reference/en/p5/normal.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/vertex.js#L2066
title: normal
module: Shape
submodule: Vertex
diff --git a/src/content/reference/en/p5/normalMaterial.mdx b/src/content/reference/en/p5/normalMaterial.mdx
index 4acf2fa9ec..4306c34557 100644
--- a/src/content/reference/en/p5/normalMaterial.mdx
+++ b/src/content/reference/en/p5/normalMaterial.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L2365
title: normalMaterial
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/orbitControl.mdx b/src/content/reference/en/p5/orbitControl.mdx
index 7493a568c4..ed23dd1fff 100644
--- a/src/content/reference/en/p5/orbitControl.mdx
+++ b/src/content/reference/en/p5/orbitControl.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/interaction.js#L11
title: orbitControl
module: 3D
submodule: Interaction
diff --git a/src/content/reference/en/p5/ortho.mdx b/src/content/reference/en/p5/ortho.mdx
index e7d1cfe30c..151b7916b8 100644
--- a/src/content/reference/en/p5/ortho.mdx
+++ b/src/content/reference/en/p5/ortho.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L412
title: ortho
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5/outputVolume.mdx b/src/content/reference/en/p5/outputVolume.mdx
index 9b0d16e8a4..0ad272d109 100644
--- a/src/content/reference/en/p5/outputVolume.mdx
+++ b/src/content/reference/en/p5/outputVolume.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L738
title: outputVolume
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5/p5.Camera.mdx b/src/content/reference/en/p5/p5.Camera.mdx
index 97841cc22b..d3488380cb 100644
--- a/src/content/reference/en/p5/p5.Camera.mdx
+++ b/src/content/reference/en/p5/p5.Camera.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L723
title: p5.Camera
module: 3D
submodule: Camera
@@ -241,7 +244,7 @@ methods:
which is 10 times the default distance between the camera and the
origin.
- path: p5.Camera/perspective
+ path: src\content\reference\en\p5.Camera/perspective
ortho:
description: >
Sets an orthographic projection for the camera.
@@ -294,7 +297,7 @@ methods:
far
are set to
0 and max(width, height) + 800
, respectively.
- path: p5.Camera/ortho
+ path: src\content\reference\en\p5.Camera/ortho
frustum:
description: >
Sets the camera's frustum.
@@ -352,7 +355,7 @@ methods:
between the
camera and the origin.
- path: p5.Camera/frustum
+ path: src\content\reference\en\p5.Camera/frustum
roll:
description: >
Rotates the camera in a clockwise/counter-clockwise direction.
@@ -376,7 +379,7 @@ methods:
Note: Angles are interpreted based on the current
angleMode().
- path: p5.Camera/roll
+ path: src\content\reference\en\p5.Camera/roll
pan:
description: >
Rotates the camera left and right.
@@ -399,7 +402,7 @@ methods:
Note: Angles are interpreted based on the current
angleMode().
- path: p5.Camera/pan
+ path: src\content\reference\en\p5.Camera/pan
tilt:
description: >
Rotates the camera up and down.
@@ -422,7 +425,7 @@ methods:
Note: Angles are interpreted based on the current
angleMode().
- path: p5.Camera/tilt
+ path: src\content\reference\en\p5.Camera/tilt
lookAt:
description: >
Points the camera at a location.
@@ -441,7 +444,7 @@ methods:
coordinates
(10, 20, 30)
.
- path: p5.Camera/lookAt
+ path: src\content\reference\en\p5.Camera/lookAt
camera:
description: >
Sets the position and orientation of the camera.
@@ -491,7 +494,7 @@ methods:
default, the "up"
vector is (0, 1, 0)
.
- path: p5.Camera/camera
+ path: src\content\reference\en\p5.Camera/camera
move:
description: >
Moves the camera along its "local" axes without changing its
@@ -506,7 +509,7 @@ methods:
pixels to the right, 20 pixels down, and 30 pixels backward in its "local"
space.
- path: p5.Camera/move
+ path: src\content\reference\en\p5.Camera/move
setPosition:
description: >
Sets the camera’s position in "world" space without changing its
@@ -521,7 +524,7 @@ methods:
places the camera at coordinates (10, 20, 30)
in "world"
space.
- path: p5.Camera/setPosition
+ path: src\content\reference\en\p5.Camera/setPosition
set:
description: >
Sets the camera’s position, orientation, and projection by copying
@@ -534,7 +537,7 @@ methods:
cam2.set(cam1)
will set cam2
using
cam1
’s configuration.
- path: p5.Camera/set
+ path: src\content\reference\en\p5.Camera/set
slerp:
description: >
Sets the camera’s position and orientation to values that are
@@ -576,25 +579,25 @@ methods:
close to cam1
’s.
Note: All of the cameras must use the same projection.
- path: p5.Camera/slerp
+ path: src\content\reference\en\p5.Camera/slerp
properties:
eyeX:
description: |
The camera’s x-coordinate.
By default, the camera’s x-coordinate is set to 0 in "world" space.
- path: p5.Camera/eyeX
+ path: src\content\reference\en\p5.Camera/eyeX
eyeY:
description: |
The camera’s y-coordinate.
By default, the camera’s y-coordinate is set to 0 in "world" space.
- path: p5.Camera/eyeY
+ path: src\content\reference\en\p5.Camera/eyeY
eyeZ:
description: >
The camera’s z-coordinate.
By default, the camera’s z-coordinate is set to 800 in "world"
space.
- path: p5.Camera/eyeZ
+ path: src\content\reference\en\p5.Camera/eyeZ
centerX:
description: >
The x-coordinate of the place where the camera looks.
@@ -603,7 +606,7 @@ properties:
"world" space, so
myCamera.centerX
is 0.
- path: p5.Camera/centerX
+ path: src\content\reference\en\p5.Camera/centerX
centerY:
description: >
The y-coordinate of the place where the camera looks.
@@ -612,7 +615,7 @@ properties:
"world" space, so
myCamera.centerY
is 0.
- path: p5.Camera/centerY
+ path: src\content\reference\en\p5.Camera/centerY
centerZ:
description: >
The y-coordinate of the place where the camera looks.
@@ -621,7 +624,7 @@ properties:
"world" space, so
myCamera.centerZ
is 0.
- path: p5.Camera/centerZ
+ path: src\content\reference\en\p5.Camera/centerZ
upX:
description: >
The x-component of the camera's "up" vector.
@@ -630,7 +633,7 @@ properties:
vector is
(0, 1, 0)
, so its x-component is 0 in "local" space.
- path: p5.Camera/upX
+ path: src\content\reference\en\p5.Camera/upX
upY:
description: >
The y-component of the camera's "up" vector.
@@ -639,7 +642,7 @@ properties:
vector is
(0, 1, 0)
, so its y-component is 1 in "local" space.
- path: p5.Camera/upY
+ path: src\content\reference\en\p5.Camera/upY
upZ:
description: >
The z-component of the camera's "up" vector.
@@ -648,7 +651,7 @@ properties:
vector is
(0, 1, 0)
, so its z-component is 0 in "local" space.
- path: p5.Camera/upZ
+ path: src\content\reference\en\p5.Camera/upZ
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.Color.mdx b/src/content/reference/en/p5/p5.Color.mdx
index 909e7ed038..9be01e7903 100644
--- a/src/content/reference/en/p5/p5.Color.mdx
+++ b/src/content/reference/en/p5/p5.Color.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/p5.Color.js#L318
title: p5.Color
module: Color
submodule: Creating & Reading
@@ -67,7 +70,7 @@ methods:
formatted. By default, color strings are formatted as 'rgba(r, g, b,
a)'
.
- path: p5.Color/toString
+ path: src\content\reference\en\p5.Color/toString
setRed:
description: >
Sets the red component of a color.
@@ -76,7 +79,7 @@ methods:
href="/reference/p5/colorMode/">colorMode(). In the
default RGB mode it's between 0 and 255.
- path: p5.Color/setRed
+ path: src\content\reference\en\p5.Color/setRed
setGreen:
description: >
Sets the green component of a color.
@@ -85,7 +88,7 @@ methods:
href="/reference/p5/colorMode/">colorMode(). In the
default RGB mode it's between 0 and 255.
- path: p5.Color/setGreen
+ path: src\content\reference\en\p5.Color/setGreen
setBlue:
description: >
Sets the blue component of a color.
@@ -94,7 +97,7 @@ methods:
href="/reference/p5/colorMode/">colorMode(). In the
default RGB mode it's between 0 and 255.
- path: p5.Color/setBlue
+ path: src\content\reference\en\p5.Color/setBlue
setAlpha:
description: >
Sets the alpha (transparency) value of a color.
@@ -105,7 +108,7 @@ methods:
mode it's
between 0 and 255.
- path: p5.Color/setAlpha
+ path: src\content\reference\en\p5.Color/setAlpha
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.Element.mdx b/src/content/reference/en/p5/p5.Element.mdx
index cf6506500d..ab846f6ac7 100644
--- a/src/content/reference/en/p5/p5.Element.mdx
+++ b/src/content/reference/en/p5/p5.Element.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Element.js#L9
title: p5.Element
module: DOM
submodule: DOM
@@ -94,14 +97,14 @@ methods:
element's
parent.
- path: p5.Element/parent
+ path: src\content\reference\en\p5.Element/parent
id:
description: >
Sets the element's ID using a given string.
Calling myElement.id()
without an argument returns its ID
as a string.
- path: p5.Element/id
+ path: src\content\reference\en\p5.Element/id
class:
description: >
Adds a
@@ -114,7 +117,7 @@ methods:
Calling myElement.class()
without an argument returns a
string with its current classes.
- path: p5.Element/class
+ path: src\content\reference\en\p5.Element/class
mousePressed:
description: >
Calls a function when the mouse is pressed over the element.
@@ -125,14 +128,14 @@ methods:
Note: Some mobile browsers may also trigger this event when the element
receives a quick tap.
- path: p5.Element/mousePressed
+ path: src\content\reference\en\p5.Element/mousePressed
doubleClicked:
description: >
Calls a function when the mouse is pressed twice over the element.
Calling myElement.doubleClicked(false)
disables the
function.
- path: p5.Element/doubleClicked
+ path: src\content\reference\en\p5.Element/doubleClicked
mouseWheel:
description: >
Calls a function when the mouse wheel scrolls over the element.
@@ -154,7 +157,7 @@ methods:
Calling myElement.mouseWheel(false)
disables the
function.
- path: p5.Element/mouseWheel
+ path: src\content\reference\en\p5.Element/mouseWheel
mouseReleased:
description: >
Calls a function when the mouse is released over the element.
@@ -165,7 +168,7 @@ methods:
Note: Some mobile browsers may also trigger this event when the element
receives a quick tap.
- path: p5.Element/mouseReleased
+ path: src\content\reference\en\p5.Element/mouseReleased
mouseClicked:
description: >
Calls a function when the mouse is pressed and released over the
@@ -177,28 +180,28 @@ methods:
Note: Some mobile browsers may also trigger this event when the element
receives a quick tap.
- path: p5.Element/mouseClicked
+ path: src\content\reference\en\p5.Element/mouseClicked
mouseMoved:
description: >
Calls a function when the mouse moves over the element.
Calling myElement.mouseMoved(false)
disables the
function.
- path: p5.Element/mouseMoved
+ path: src\content\reference\en\p5.Element/mouseMoved
mouseOver:
description: >
Calls a function when the mouse moves onto the element.
Calling myElement.mouseOver(false)
disables the
function.
- path: p5.Element/mouseOver
+ path: src\content\reference\en\p5.Element/mouseOver
mouseOut:
description: >
Calls a function when the mouse moves off the element.
Calling myElement.mouseOut(false)
disables the
function.
- path: p5.Element/mouseOut
+ path: src\content\reference\en\p5.Element/mouseOut
touchStarted:
description: >
Calls a function when the element is touched.
@@ -207,7 +210,7 @@ methods:
function.
Note: Touch functions only work on mobile devices.
- path: p5.Element/touchStarted
+ path: src\content\reference\en\p5.Element/touchStarted
touchMoved:
description: >
Calls a function when the user touches the element and moves.
@@ -216,7 +219,7 @@ methods:
function.
Note: Touch functions only work on mobile devices.
- path: p5.Element/touchMoved
+ path: src\content\reference\en\p5.Element/touchMoved
touchEnded:
description: >
Calls a function when the user stops touching the element.
@@ -225,37 +228,37 @@ methods:
function.
Note: Touch functions only work on mobile devices.
- path: p5.Element/touchEnded
+ path: src\content\reference\en\p5.Element/touchEnded
dragOver:
description: >
Calls a function when a file is dragged over the element.
Calling myElement.dragOver(false)
disables the
function.
- path: p5.Element/dragOver
+ path: src\content\reference\en\p5.Element/dragOver
dragLeave:
description: >
Calls a function when a file is dragged off the element.
Calling myElement.dragLeave(false)
disables the
function.
- path: p5.Element/dragLeave
+ path: src\content\reference\en\p5.Element/dragLeave
addClass:
description: |
Adds a class to the element.
- path: p5.Element/addClass
+ path: src\content\reference\en\p5.Element/addClass
removeClass:
description: |
Removes a class from the element.
- path: p5.Element/removeClass
+ path: src\content\reference\en\p5.Element/removeClass
hasClass:
description: |
Checks if a class is already applied to element.
- path: p5.Element/hasClass
+ path: src\content\reference\en\p5.Element/hasClass
toggleClass:
description: |
Toggles whether a class is applied to the element.
- path: p5.Element/toggleClass
+ path: src\content\reference\en\p5.Element/toggleClass
child:
description: >
Attaches the element as a child of another element.
@@ -268,7 +271,7 @@ methods:
array of
children DOM nodes is returned.
- path: p5.Element/child
+ path: src\content\reference\en\p5.Element/child
center:
description: >
Centers the element either vertically, horizontally, or both.
@@ -282,7 +285,7 @@ methods:
element is aligned
both vertically and horizontally.
- path: p5.Element/center
+ path: src\content\reference\en\p5.Element/center
html:
description: >
Sets the inner HTML of the element, replacing any existing HTML.
@@ -299,7 +302,7 @@ methods:
element's inner
HTML is returned.
- path: p5.Element/html
+ path: src\content\reference\en\p5.Element/html
position:
description: >
Sets the element's position.
@@ -327,7 +330,7 @@ methods:
the element's position in an object, as in { x: 0, y: 0
}
.
- path: p5.Element/position
+ path: src\content\reference\en\p5.Element/position
style:
description: >
Applies a style to the element by adding a
@@ -361,7 +364,7 @@ methods:
p5.Color object, as in
myElement.style('color', myColor)
.
- path: p5.Element/style
+ path: src\content\reference\en\p5.Element/style
attribute:
description: >
Adds an
@@ -400,7 +403,7 @@ methods:
horizontal
alignment to center
.
- path: p5.Element/attribute
+ path: src\content\reference\en\p5.Element/attribute
removeAttribute:
description: >
Removes an attribute from the element.
@@ -412,7 +415,7 @@ methods:
align
attribute if it's been set.
- path: p5.Element/removeAttribute
+ path: src\content\reference\en\p5.Element/removeAttribute
value:
description: >
Returns or sets the element's value.
@@ -425,15 +428,15 @@ methods:
as in myElement.value(123)
, it's used to set the element's
value.
- path: p5.Element/value
+ path: src\content\reference\en\p5.Element/value
show:
description: |
Shows the current element.
- path: p5.Element/show
+ path: src\content\reference\en\p5.Element/show
hide:
description: |
Hides the current element.
- path: p5.Element/hide
+ path: src\content\reference\en\p5.Element/hide
size:
description: >
Sets the element's width and height.
@@ -473,12 +476,12 @@ methods:
wait
to call myElement.size()
until after the data loads.
- path: p5.Element/size
+ path: src\content\reference\en\p5.Element/size
remove:
description: |
Removes the element, stops all audio/video streams, and removes all
callback functions.
- path: p5.Element/remove
+ path: src\content\reference\en\p5.Element/remove
drop:
description: >
Calls a function when the user drops a file on the element.
@@ -503,7 +506,7 @@ methods:
DragEvent.
- path: p5.Element/drop
+ path: src\content\reference\en\p5.Element/drop
draggable:
description: >
Makes the element draggable.
@@ -514,7 +517,7 @@ methods:
myElement.draggable(otherElement)
, the other element will
become draggable.
- path: p5.Element/draggable
+ path: src\content\reference\en\p5.Element/draggable
properties:
elt:
description: >
@@ -526,15 +529,15 @@ properties:
target="_blank">HTMLElement
object's properties and methods can be used directly.
- path: p5.Element/elt
+ path: src\content\reference\en\p5.Element/elt
width:
description: |
A Number
property that stores the element's width.
- path: p5.Element/width
+ path: src\content\reference\en\p5.Element/width
height:
description: |
A Number
property that stores the element's height.
- path: p5.Element/height
+ path: src\content\reference\en\p5.Element/height
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.File.mdx b/src/content/reference/en/p5/p5.File.mdx
index df20e94510..1af5e4d337 100644
--- a/src/content/reference/en/p5/p5.File.mdx
+++ b/src/content/reference/en/p5/p5.File.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L5482
title: p5.File
module: DOM
submodule: DOM
@@ -103,7 +106,7 @@ properties:
target="_blank">File
object. All File
properties and methods are accessible.
- path: p5.File/file
+ path: src\content\reference\en\p5.File/file
type:
description: >
The file
@@ -116,7 +119,7 @@ properties:
For example, 'image'
and 'text'
are both MIME
types.
- path: p5.File/type
+ path: src\content\reference\en\p5.File/type
subtype:
description: >
The file subtype as a string.
@@ -128,21 +131,21 @@ properties:
target="_blank">MIME type
may have a subtype such as png
or jpeg
.
- path: p5.File/subtype
+ path: src\content\reference\en\p5.File/subtype
name:
description: |
The file name as a string.
- path: p5.File/name
+ path: src\content\reference\en\p5.File/name
size:
description: |
The number of bytes in the file.
- path: p5.File/size
+ path: src\content\reference\en\p5.File/size
data:
description: |
A string containing the file's data.
Data can be either image data, text contents, or a parsed object in the
case of JSON and p5.XML objects.
- path: p5.File/data
+ path: src\content\reference\en\p5.File/data
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.Font.mdx b/src/content/reference/en/p5/p5.Font.mdx
index 13374a8802..15463f0834 100644
--- a/src/content/reference/en/p5/p5.Font.mdx
+++ b/src/content/reference/en/p5/p5.Font.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/typography/p5.Font.js#L13
title: p5.Font
module: Typography
submodule: Loading & Displaying
@@ -79,7 +82,7 @@ methods:
will use the
current textSize().
- path: p5.Font/textBounds
+ path: src\content\reference\en\p5.Font/textBounds
textToPoints:
description: >
Returns an array of points outlining a string of text written using the
@@ -128,14 +131,14 @@ methods:
than 0. The value represents the threshold angle to use when determining
whether two edges are collinear.
- path: p5.Font/textToPoints
+ path: src\content\reference\en\p5.Font/textToPoints
properties:
font:
description: |
The font's underlying
opentype.js
font object.
- path: p5.Font/font
+ path: src\content\reference\en\p5.Font/font
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.Framebuffer.mdx b/src/content/reference/en/p5/p5.Framebuffer.mdx
index 05f78f9dc3..cf96aed245 100644
--- a/src/content/reference/en/p5/p5.Framebuffer.mdx
+++ b/src/content/reference/en/p5/p5.Framebuffer.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Framebuffer.js#L76
title: p5.Framebuffer
module: Rendering
file: src/webgl/p5.Framebuffer.js
@@ -73,7 +76,7 @@ methods:
to 300
and myBuffer.height
500.
- path: p5.Framebuffer/resize
+ path: src\content\reference\en\p5.Framebuffer/resize
pixelDensity:
description: >
Sets the framebuffer's pixel density or returns its current
@@ -103,7 +106,7 @@ methods:
returns its current
pixel density.
- path: p5.Framebuffer/pixelDensity
+ path: src\content\reference\en\p5.Framebuffer/pixelDensity
autoSized:
description: >
Toggles the framebuffer's autosizing mode or returns the current
@@ -121,7 +124,7 @@ methods:
true
if
the framebuffer automatically resizes and false
if not.
- path: p5.Framebuffer/autoSized
+ path: src\content\reference\en\p5.Framebuffer/autoSized
createCamera:
description: >
Creates a new
@@ -186,7 +189,7 @@ methods:
myBuffer.end();
- path: p5.Framebuffer/createCamera
+ path: src\content\reference\en\p5.Framebuffer/createCamera
remove:
description: >
Deletes the framebuffer from GPU memory.
@@ -217,7 +220,7 @@ methods:
variable still refers to the framebuffer, then it won't be garbage
collected.
- path: p5.Framebuffer/remove
+ path: src\content\reference\en\p5.Framebuffer/remove
begin:
description: >
Begins drawing shapes to the framebuffer.
@@ -236,7 +239,7 @@ methods:
framebuffer. Changes won't be visible until the framebuffer is displayed
as an image or texture.
- path: p5.Framebuffer/begin
+ path: src\content\reference\en\p5.Framebuffer/begin
end:
description: >
Stops drawing shapes to the framebuffer.
@@ -255,7 +258,7 @@ methods:
Changes won't be visible until the framebuffer is displayed as an image
or texture.
- path: p5.Framebuffer/end
+ path: src\content\reference\en\p5.Framebuffer/end
draw:
description: >
Draws to the framebuffer by calling a function that contains drawing
@@ -280,7 +283,7 @@ methods:
myBuffer.end();
- path: p5.Framebuffer/draw
+ path: src\content\reference\en\p5.Framebuffer/draw
loadPixels:
description: >
Loads the current value of each pixel in the framebuffer into its
@@ -291,7 +294,7 @@ methods:
or writing to
myBuffer.pixels.
- path: p5.Framebuffer/loadPixels
+ path: src\content\reference\en\p5.Framebuffer/loadPixels
get:
description: >
Gets a pixel or a region of pixels from the framebuffer.
@@ -330,7 +333,7 @@ methods:
the coordinates for the upper-left corner of the subsection. The last two
parameters are the width and height of the subsection.
- path: p5.Framebuffer/get
+ path: src\content\reference\en\p5.Framebuffer/get
updatePixels:
description: >
Updates the framebuffer with the RGBA values in the
@@ -347,7 +350,7 @@ methods:
myBuffer.loadPixels().
- path: p5.Framebuffer/updatePixels
+ path: src\content\reference\en\p5.Framebuffer/updatePixels
properties:
pixels:
description: >
@@ -372,7 +375,7 @@ properties:
over
myBuffer.pixels
.
- path: p5.Framebuffer/pixels
+ path: src\content\reference\en\p5.Framebuffer/pixels
color:
description: >
An object that stores the framebuffer's color data.
@@ -402,7 +405,7 @@ properties:
plane(myBuffer.width, -myBuffer.height)
will flip the
framebuffer.
- path: p5.Framebuffer/color
+ path: src\content\reference\en\p5.Framebuffer/color
depth:
description: >
An object that stores the framebuffer's depth data.
@@ -432,7 +435,7 @@ properties:
plane(myBuffer.width, -myBuffer.height)
will flip the
framebuffer.
- path: p5.Framebuffer/depth
+ path: src\content\reference\en\p5.Framebuffer/depth
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.Geometry.mdx b/src/content/reference/en/p5/p5.Geometry.mdx
index a5ab48e47e..6710096282 100644
--- a/src/content/reference/en/p5/p5.Geometry.mdx
+++ b/src/content/reference/en/p5/p5.Geometry.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Geometry.js#L13
title: p5.Geometry
module: Shape
submodule: 3D Primitives
@@ -327,7 +330,7 @@ methods:
// }
- path: p5.Geometry/calculateBoundingBox
+ path: src\content\reference\en\p5.Geometry/calculateBoundingBox
clearColors:
description: >
Removes the geometry’s internal colors.
@@ -343,7 +346,7 @@ methods:
fill() function to apply color to the
geometry.
- path: p5.Geometry/clearColors
+ path: src\content\reference\en\p5.Geometry/clearColors
saveObj:
description: >
The saveObj()
function exports p5.Geometry
@@ -359,7 +362,7 @@ methods:
p5.Geometry
,
as well as its texture coordinates and normals, if it has them.
- path: p5.Geometry/saveObj
+ path: src\content\reference\en\p5.Geometry/saveObj
saveStl:
description: >
The saveStl()
function exports p5.Geometry
@@ -379,7 +382,7 @@ methods:
but less human-readable binary .stl file by passing { binary: true
}
as a second parameter.
- path: p5.Geometry/saveStl
+ path: src\content\reference\en\p5.Geometry/saveStl
flipU:
description: >
Flips the geometry’s texture u-coordinates.
@@ -440,7 +443,7 @@ methods:
// Bottom vertices: [0, 1, 1, 1] --> [1, 1, 0, 1]
- path: p5.Geometry/flipU
+ path: src\content\reference\en\p5.Geometry/flipU
flipV:
description: >
Flips the geometry’s texture v-coordinates.
@@ -501,7 +504,7 @@ methods:
// Right vertices: [1, 0] <--> [1, 1]
- path: p5.Geometry/flipV
+ path: src\content\reference\en\p5.Geometry/flipV
computeFaces:
description: >
Computes the geometry's faces using its vertices.
@@ -568,7 +571,7 @@ methods:
Note: myGeometry.computeFaces()
only works when geometries
have four or more vertices.
- path: p5.Geometry/computeFaces
+ path: src\content\reference\en\p5.Geometry/computeFaces
computeNormals:
description: >
Calculates the normal vector for each vertex on the geometry.
@@ -634,7 +637,7 @@ methods:
number of decimal places to use for calculations. By default,
roundToPrecision
uses 3 decimal places.
- path: p5.Geometry/computeNormals
+ path: src\content\reference\en\p5.Geometry/computeNormals
normalize:
description: >
Transforms the geometry's vertices to fit snugly within a 100×100×100
@@ -655,7 +658,7 @@ methods:
Note: myGeometry.normalize()
only works when called in the
setup() function.
- path: p5.Geometry/normalize
+ path: src\content\reference\en\p5.Geometry/normalize
properties:
vertices:
description: >
@@ -675,7 +678,7 @@ properties:
is
myGeometry.vertices[2]
, and so on.
- path: p5.Geometry/vertices
+ path: src\content\reference\en\p5.Geometry/vertices
vertexNormals:
description: >
An array with the vectors that are normal to the geometry's
@@ -697,7 +700,7 @@ properties:
href="/reference/p5/p5.Vector">p5.Vector
objects in the myGeometry.vertexNormals
array.
- path: p5.Geometry/vertexNormals
+ path: src\content\reference\en\p5.Geometry/vertexNormals
faces:
description: >
An array that lists which of the geometry's vertices form each of its
@@ -753,7 +756,7 @@ properties:
myGeometry.vertices[1]
,and
myGeometry.vertices[3]
.
- path: p5.Geometry/faces
+ path: src\content\reference\en\p5.Geometry/faces
uvs:
description: >
An array that lists the texture coordinates for each of the geometry's
@@ -782,7 +785,7 @@ properties:
stored at myGeometry.uvs[0]
and
myGeometry.uvs[1]
.
- path: p5.Geometry/uvs
+ path: src\content\reference\en\p5.Geometry/uvs
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.Graphics.mdx b/src/content/reference/en/p5/p5.Graphics.mdx
index 611b26bec4..49d618c1fc 100644
--- a/src/content/reference/en/p5/p5.Graphics.mdx
+++ b/src/content/reference/en/p5/p5.Graphics.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Graphics.js#L10
title: p5.Graphics
module: Rendering
submodule: Rendering
@@ -132,7 +135,7 @@ methods:
objects must reset these values manually by calling
myGraphics.reset()
.
- path: p5.Graphics/reset
+ path: src\content\reference\en\p5.Graphics/reset
remove:
description: >
Removes the graphics buffer from the web page.
@@ -164,7 +167,7 @@ methods:
variable still refers to the graphics buffer, then it won't be garbage
collected.
- path: p5.Graphics/remove
+ path: src\content\reference\en\p5.Graphics/remove
createFramebuffer:
description: >
Creates a new p5.Framebuffer
@@ -250,7 +253,7 @@ methods:
attributes are set, they won't
automatically match the graphics buffer and must be changed manually.
- path: p5.Graphics/createFramebuffer
+ path: src\content\reference\en\p5.Graphics/createFramebuffer
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.Image.mdx b/src/content/reference/en/p5/p5.Image.mdx
index 73dd06ad4b..fd12810778 100644
--- a/src/content/reference/en/p5/p5.Image.mdx
+++ b/src/content/reference/en/p5/p5.Image.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/p5.Image.js#L21
title: p5.Image
module: Image
submodule: Image
@@ -113,7 +116,7 @@ methods:
Call this method with no arguments to get the default density, or pass
in a number to set the density. If a non-positive number is provided,
it defaults to 1.
- path: p5.Image/pixelDensity
+ path: src\content\reference\en\p5.Image/pixelDensity
loadPixels:
description: >
Loads the current value of each pixel in the image into the
@@ -125,7 +128,7 @@ methods:
modifying pixel
values.
- path: p5.Image/loadPixels
+ path: src\content\reference\en\p5.Image/loadPixels
updatePixels:
description: >
Updates the canvas with the RGBA values in the
@@ -156,7 +159,7 @@ methods:
img.updatePixels()
will update the pixels in current frame.
- path: p5.Image/updatePixels
+ path: src\content\reference\en\p5.Image/updatePixels
get:
description: >
Gets a pixel or a region of pixels from the image.
@@ -194,7 +197,7 @@ methods:
href="/reference/p5/get/">get() to work directly
with images.
- path: p5.Image/get
+ path: src\content\reference\en\p5.Image/get
set:
description: >
Sets the color of one or more pixels within an image.
@@ -220,7 +223,7 @@ methods:
be called
after using img.set()
for changes to appear.
- path: p5.Image/set
+ path: src\content\reference\en\p5.Image/set
resize:
description: >
Resizes the image to a given width and height.
@@ -231,7 +234,7 @@ methods:
img.resize(50, 0)
on an image
that was 500 × 300 pixels will resize it to 50 × 30 pixels.
- path: p5.Image/resize
+ path: src\content\reference\en\p5.Image/resize
copy:
description: >
Copies pixels from a source image to this image.
@@ -268,7 +271,7 @@ methods:
region if it isn't
the same size as the destination region.
- path: p5.Image/copy
+ path: src\content\reference\en\p5.Image/copy
mask:
description: >
Masks part of the image with another.
@@ -281,7 +284,7 @@ methods:
and can't be removed once applied. If the mask has a different
pixel density from this image, the mask will be scaled.
- path: p5.Image/mask
+ path: src\content\reference\en\p5.Image/mask
filter:
description: >
Applies an image filter to the image.
@@ -335,7 +338,7 @@ methods:
DILATE
Increases the light areas. No parameter is used.
- path: p5.Image/filter
+ path: src\content\reference\en\p5.Image/filter
blend:
description: >
Copies a region of pixels from another image into this one.
@@ -373,7 +376,7 @@ methods:
SOFT_LIGHT
, DODGE
, BURN
,
ADD
, or NORMAL
.
- path: p5.Image/blend
+ path: src\content\reference\en\p5.Image/blend
save:
description: >
Saves the image to a file.
@@ -412,34 +415,34 @@ methods:
create new
GIFs.
- path: p5.Image/save
+ path: src\content\reference\en\p5.Image/save
reset:
description: |
Restarts an animated GIF at its first frame.
- path: p5.Image/reset
+ path: src\content\reference\en\p5.Image/reset
getCurrentFrame:
description: |
Gets the index of the current frame in an animated GIF.
- path: p5.Image/getCurrentFrame
+ path: src\content\reference\en\p5.Image/getCurrentFrame
setFrame:
description: |
Sets the current frame in an animated GIF.
- path: p5.Image/setFrame
+ path: src\content\reference\en\p5.Image/setFrame
numFrames:
description: |
Returns the number of frames in an animated GIF.
- path: p5.Image/numFrames
+ path: src\content\reference\en\p5.Image/numFrames
play:
description: |
Plays an animated GIF that was paused with
img.pause().
- path: p5.Image/play
+ path: src\content\reference\en\p5.Image/play
pause:
description: |
Pauses an animated GIF.
The GIF can be resumed by calling
img.play().
- path: p5.Image/pause
+ path: src\content\reference\en\p5.Image/pause
delay:
description: >
Changes the delay between frames in an animated GIF.
@@ -454,16 +457,16 @@ methods:
keep
their default delay.
- path: p5.Image/delay
+ path: src\content\reference\en\p5.Image/delay
properties:
width:
description: |
The image's width in pixels.
- path: p5.Image/width
+ path: src\content\reference\en\p5.Image/width
height:
description: |
The image's height in pixels.
- path: p5.Image/height
+ path: src\content\reference\en\p5.Image/height
pixels:
description: >
An array containing the color of each pixel in the image.
@@ -508,7 +511,7 @@ properties:
must be
called after any changes are made.
- path: p5.Image/pixels
+ path: src\content\reference\en\p5.Image/pixels
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.MediaElement.mdx b/src/content/reference/en/p5/p5.MediaElement.mdx
index c8ebbc101a..8551094faf 100644
--- a/src/content/reference/en/p5/p5.MediaElement.mdx
+++ b/src/content/reference/en/p5/p5.MediaElement.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L4099
title: p5.MediaElement
module: DOM
submodule: DOM
@@ -52,30 +55,30 @@ methods:
play:
description: |
Plays audio or video from a media element.
- path: p5.MediaElement/play
+ path: src\content\reference\en\p5.MediaElement/play
stop:
description: >
Stops a media element and sets its current time to 0.
Calling media.play()
will restart playing audio/video from
the beginning.
- path: p5.MediaElement/stop
+ path: src\content\reference\en\p5.MediaElement/stop
pause:
description: >
Pauses a media element.
Calling media.play()
will resume playing audio/video from
the moment it paused.
- path: p5.MediaElement/pause
+ path: src\content\reference\en\p5.MediaElement/pause
loop:
description: |
Plays the audio/video repeatedly in a loop.
- path: p5.MediaElement/loop
+ path: src\content\reference\en\p5.MediaElement/loop
noLoop:
description: |
Stops the audio/video from playing in a loop.
The media will stop when it finishes playing.
- path: p5.MediaElement/noLoop
+ path: src\content\reference\en\p5.MediaElement/noLoop
autoplay:
description: >
Sets the audio/video to play once it's loaded.
@@ -90,7 +93,7 @@ methods:
media will automatically play. If false
is passed, as in
media.autoPlay(false)
, it won't play automatically.
- path: p5.MediaElement/autoplay
+ path: src\content\reference\en\p5.MediaElement/autoplay
volume:
description: >
Sets the audio/video volume.
@@ -107,7 +110,7 @@ methods:
media.volume(0.5)
sets the volume to half of its maximum.
- path: p5.MediaElement/volume
+ path: src\content\reference\en\p5.MediaElement/volume
speed:
description: >
Sets the audio/video playback speed.
@@ -127,7 +130,7 @@ methods:
Note: Not all browsers support backward playback. Even if they do,
playback might not be smooth.
- path: p5.MediaElement/speed
+ path: src\content\reference\en\p5.MediaElement/speed
time:
description: >
Sets the media element's playback time.
@@ -143,11 +146,11 @@ methods:
the audio/video has played.
Note: Time resets to 0 when looping media restarts.
- path: p5.MediaElement/time
+ path: src\content\reference\en\p5.MediaElement/time
duration:
description: |
Returns the audio/video's duration in seconds.
- path: p5.MediaElement/duration
+ path: src\content\reference\en\p5.MediaElement/duration
onended:
description: >
Calls a function when the audio/video reaches the end of its
@@ -156,7 +159,7 @@ methods:
The element is passed as an argument to the callback function.
Note: The function won't be called if the media is looping.
- path: p5.MediaElement/onended
+ path: src\content\reference\en\p5.MediaElement/onended
connect:
description: >
Sends the element's audio to an output.
@@ -175,7 +178,7 @@ methods:
Note: This method is meant to be used with the p5.sound.js addon
library.
- path: p5.MediaElement/connect
+ path: src\content\reference\en\p5.MediaElement/connect
disconnect:
description: >
Disconnect all Web Audio routing, including to the main output.
@@ -184,7 +187,7 @@ methods:
effects,
for example.
- path: p5.MediaElement/disconnect
+ path: src\content\reference\en\p5.MediaElement/disconnect
showControls:
description: >
Show the default
@@ -196,7 +199,7 @@ methods:
controls.
Note: The controls vary between web browsers.
- path: p5.MediaElement/showControls
+ path: src\content\reference\en\p5.MediaElement/showControls
hideControls:
description: >
Hide the default
@@ -206,7 +209,7 @@ methods:
target="_blank">HTMLMediaElement
controls.
- path: p5.MediaElement/hideControls
+ path: src\content\reference\en\p5.MediaElement/hideControls
addCue:
description: >
Schedules a function to call when the audio/video reaches a specific
@@ -234,20 +237,20 @@ methods:
useful for
removing the cue later.
- path: p5.MediaElement/addCue
+ path: src\content\reference\en\p5.MediaElement/addCue
removeCue:
description: |
Removes a callback based on its ID.
- path: p5.MediaElement/removeCue
+ path: src\content\reference\en\p5.MediaElement/removeCue
clearCues:
description: |
Removes all functions scheduled with media.addCue()
.
- path: p5.MediaElement/clearCues
+ path: src\content\reference\en\p5.MediaElement/clearCues
properties:
src:
description: |
Path to the media element's source as a string.
- path: p5.MediaElement/src
+ path: src\content\reference\en\p5.MediaElement/src
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.NumberDict.mdx b/src/content/reference/en/p5/p5.NumberDict.mdx
index 6295396e18..c2204cb4ea 100644
--- a/src/content/reference/en/p5/p5.NumberDict.mdx
+++ b/src/content/reference/en/p5/p5.NumberDict.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L415
title: p5.NumberDict
module: Data
submodule: Dictionary
@@ -12,7 +15,7 @@ methods:
description: |
Add the given number to the value currently stored at the given key.
The sum then replaces the value previously stored in the Dictionary.
- path: p5.NumberDict/add
+ path: src\content\reference\en\p5.NumberDict/add
sub:
description: >
Subtract the given number from the value currently stored at the given
@@ -20,7 +23,7 @@ methods:
The difference then replaces the value previously stored in the
Dictionary.
- path: p5.NumberDict/sub
+ path: src\content\reference\en\p5.NumberDict/sub
mult:
description: >
Multiply the given number with the value currently stored at the given
@@ -28,7 +31,7 @@ methods:
The product then replaces the value previously stored in the
Dictionary.
- path: p5.NumberDict/mult
+ path: src\content\reference\en\p5.NumberDict/mult
div:
description: >
Divide the given number with the value currently stored at the given
@@ -36,23 +39,23 @@ methods:
The quotient then replaces the value previously stored in the
Dictionary.
- path: p5.NumberDict/div
+ path: src\content\reference\en\p5.NumberDict/div
minValue:
description: |
Return the lowest number currently stored in the Dictionary.
- path: p5.NumberDict/minValue
+ path: src\content\reference\en\p5.NumberDict/minValue
maxValue:
description: |
Return the highest number currently stored in the Dictionary.
- path: p5.NumberDict/maxValue
+ path: src\content\reference\en\p5.NumberDict/maxValue
minKey:
description: |
Return the lowest key currently used in the Dictionary.
- path: p5.NumberDict/minKey
+ path: src\content\reference\en\p5.NumberDict/minKey
maxKey:
description: |
Return the highest key currently used in the Dictionary.
- path: p5.NumberDict/maxKey
+ path: src\content\reference\en\p5.NumberDict/maxKey
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.PrintWriter.mdx b/src/content/reference/en/p5/p5.PrintWriter.mdx
index 8f9a959340..9ceaa70be3 100644
--- a/src/content/reference/en/p5/p5.PrintWriter.mdx
+++ b/src/content/reference/en/p5/p5.PrintWriter.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L1565
title: p5.PrintWriter
module: IO
submodule: Output
diff --git a/src/content/reference/en/p5/p5.Renderer.mdx b/src/content/reference/en/p5/p5.Renderer.mdx
index 7c7a096619..b7d496d8e1 100644
--- a/src/content/reference/en/p5/p5.Renderer.mdx
+++ b/src/content/reference/en/p5/p5.Renderer.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/p5.Renderer.js#L10
title: p5.Renderer
module: Rendering
submodule: Rendering
diff --git a/src/content/reference/en/p5/p5.Shader.mdx b/src/content/reference/en/p5/p5.Shader.mdx
index df30922ab4..d4dd9f076f 100644
--- a/src/content/reference/en/p5/p5.Shader.mdx
+++ b/src/content/reference/en/p5/p5.Shader.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Shader.js#L11
title: p5.Shader
module: 3D
submodule: Material
@@ -273,7 +276,7 @@ methods:
void afterFragment() {}
- path: p5.Shader/inspectHooks
+ path: src\content\reference\en\p5.Shader/inspectHooks
modify:
description: >
Returns a new shader, based on the original, but with custom snippets
@@ -333,7 +336,7 @@ methods:
vertexDeclarations
and fragmentDeclarations
keys.
- path: p5.Shader/modify
+ path: src\content\reference\en\p5.Shader/modify
copyToContext:
description: >
Copies the shader from one drawing context to another.
@@ -389,7 +392,7 @@ methods:
objects
have the same context as the main canvas.
- path: p5.Shader/copyToContext
+ path: src\content\reference\en\p5.Shader/copyToContext
setUniform:
description: >
Sets the shader’s uniform (global) variables.
@@ -422,7 +425,7 @@ methods:
uniform’s type. Numbers, strings, booleans, arrays, and many types of
images can all be passed to a shader with setUniform()
.
- path: p5.Shader/setUniform
+ path: src\content\reference\en\p5.Shader/setUniform
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.StringDict.mdx b/src/content/reference/en/p5/p5.StringDict.mdx
index d12a6c87b1..10757c5c4d 100644
--- a/src/content/reference/en/p5/p5.StringDict.mdx
+++ b/src/content/reference/en/p5/p5.StringDict.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L397
title: p5.StringDict
module: Data
submodule: Dictionary
diff --git a/src/content/reference/en/p5/p5.Table.mdx b/src/content/reference/en/p5/p5.Table.mdx
index de3249441e..52c4d72308 100644
--- a/src/content/reference/en/p5/p5.Table.mdx
+++ b/src/content/reference/en/p5/p5.Table.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.Table.js#L33
title: p5.Table
module: IO
submodule: Table
@@ -36,23 +39,23 @@ methods:
included as a parameter, then that row is
duplicated and added to the table.
- path: p5.Table/addRow
+ path: src\content\reference\en\p5.Table/addRow
removeRow:
description: |
Removes a row from the table object.
- path: p5.Table/removeRow
+ path: src\content\reference\en\p5.Table/removeRow
getRow:
description: >
Returns a reference to the specified p5.TableRow. The reference
can then be used to get and set values of the selected row.
- path: p5.Table/getRow
+ path: src\content\reference\en\p5.Table/getRow
getRows:
description: >
Gets all rows from the table. Returns an array of p5.TableRows.
- path: p5.Table/getRows
+ path: src\content\reference\en\p5.Table/getRows
findRow:
description: |
Finds the first row in the Table that contains the value
@@ -60,7 +63,7 @@ methods:
multiple rows are possible matches, only the first matching
row is returned. The column to search may be specified by
either its ID or title.
- path: p5.Table/findRow
+ path: src\content\reference\en\p5.Table/findRow
findRows:
description: |
Finds the rows in the Table that contain the value
@@ -68,7 +71,7 @@ methods:
Array, so for must be used to iterate through all the rows,
as shown in the example above. The column to search may be
specified by either its ID or title.
- path: p5.Table/findRows
+ path: src\content\reference\en\p5.Table/findRows
matchRow:
description: |
Finds the first row in the Table that matches the regular
@@ -76,24 +79,24 @@ methods:
Even if multiple rows are possible matches, only the first
matching row is returned. The column to search may be
specified by either its ID or title.
- path: p5.Table/matchRow
+ path: src\content\reference\en\p5.Table/matchRow
matchRows:
description: |
Finds the rows in the Table that match the regular expression provided,
and returns references to those rows. Returns an array, so for must be
used to iterate through all the rows, as shown in the example. The
column to search may be specified by either its ID or title.
- path: p5.Table/matchRows
+ path: src\content\reference\en\p5.Table/matchRows
getColumn:
description: |
Retrieves all values in the specified column, and returns them
as an array. The column may be specified by either its ID or title.
- path: p5.Table/getColumn
+ path: src\content\reference\en\p5.Table/getColumn
clearRows:
description: |
Removes all rows from a Table. While all rows are removed,
columns and column titles are maintained.
- path: p5.Table/clearRows
+ path: src\content\reference\en\p5.Table/clearRows
addColumn:
description: >
Use addColumn() to add a new
@@ -104,29 +107,29 @@ methods:
may be easily referenced later by name. (If no title is
specified, the new column's title will be null.)
- path: p5.Table/addColumn
+ path: src\content\reference\en\p5.Table/addColumn
getColumnCount:
description: |
Returns the total number of columns in a Table.
- path: p5.Table/getColumnCount
+ path: src\content\reference\en\p5.Table/getColumnCount
getRowCount:
description: |
Returns the total number of rows in a Table.
- path: p5.Table/getRowCount
+ path: src\content\reference\en\p5.Table/getRowCount
removeTokens:
description: |
Removes any of the specified characters (or "tokens").
If no column is specified, then the values in all columns and
rows are processed. A specific column may be referenced by
either its ID or title.
- path: p5.Table/removeTokens
+ path: src\content\reference\en\p5.Table/removeTokens
trim:
description: |
Trims leading and trailing whitespace, such as spaces and tabs,
from String table values. If no column is specified, then the
values in all columns and rows are trimmed. A specific column
may be referenced by either its ID or title.
- path: p5.Table/trim
+ path: src\content\reference\en\p5.Table/trim
removeColumn:
description: >
Use removeColumn() to remove
@@ -139,54 +142,54 @@ methods:
removeColumn(0) would remove the first column, removeColumn(1)
would remove the second column, and so on.
- path: p5.Table/removeColumn
+ path: src\content\reference\en\p5.Table/removeColumn
set:
description: |
Stores a value in the Table's specified row and column.
The row is specified by its ID, while the column may be specified
by either its ID or title.
- path: p5.Table/set
+ path: src\content\reference\en\p5.Table/set
setNum:
description: |
Stores a Float value in the Table's specified row and column.
The row is specified by its ID, while the column may be specified
by either its ID or title.
- path: p5.Table/setNum
+ path: src\content\reference\en\p5.Table/setNum
setString:
description: |
Stores a String value in the Table's specified row and column.
The row is specified by its ID, while the column may be specified
by either its ID or title.
- path: p5.Table/setString
+ path: src\content\reference\en\p5.Table/setString
get:
description: |
Retrieves a value from the Table's specified row and column.
The row is specified by its ID, while the column may be specified by
either its ID or title.
- path: p5.Table/get
+ path: src\content\reference\en\p5.Table/get
getNum:
description: |
Retrieves a Float value from the Table's specified row and column.
The row is specified by its ID, while the column may be specified by
either its ID or title.
- path: p5.Table/getNum
+ path: src\content\reference\en\p5.Table/getNum
getString:
description: |
Retrieves a String value from the Table's specified row and column.
The row is specified by its ID, while the column may be specified by
either its ID or title.
- path: p5.Table/getString
+ path: src\content\reference\en\p5.Table/getString
getObject:
description: |
Retrieves all table data and returns as an object. If a column name is
passed in, each row object will be stored with that attribute as its
title.
- path: p5.Table/getObject
+ path: src\content\reference\en\p5.Table/getObject
getArray:
description: >
Retrieves all table data and returns it as a multidimensional
array.
- path: p5.Table/getArray
+ path: src\content\reference\en\p5.Table/getArray
properties:
columns:
description: >
@@ -194,7 +197,7 @@ properties:
"header" the table is
loaded with the "header" parameter.
- path: p5.Table/columns
+ path: src\content\reference\en\p5.Table/columns
rows:
description: >
An array containing the getRows()
- path: p5.Table/rows
+ path: src\content\reference\en\p5.Table/rows
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.TableRow.mdx b/src/content/reference/en/p5/p5.TableRow.mdx
index 0ca3ee6ffa..5fa3baa30a 100644
--- a/src/content/reference/en/p5/p5.TableRow.mdx
+++ b/src/content/reference/en/p5/p5.TableRow.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.TableRow.js#L9
title: p5.TableRow
module: IO
submodule: Table
@@ -28,34 +31,34 @@ methods:
description: |
Stores a value in the TableRow's specified column.
The column may be specified by either its ID or title.
- path: p5.TableRow/set
+ path: src\content\reference\en\p5.TableRow/set
setNum:
description: |
Stores a Float value in the TableRow's specified column.
The column may be specified by either its ID or title.
- path: p5.TableRow/setNum
+ path: src\content\reference\en\p5.TableRow/setNum
setString:
description: |
Stores a String value in the TableRow's specified column.
The column may be specified by either its ID or title.
- path: p5.TableRow/setString
+ path: src\content\reference\en\p5.TableRow/setString
get:
description: |
Retrieves a value from the TableRow's specified column.
The column may be specified by either its ID or title.
- path: p5.TableRow/get
+ path: src\content\reference\en\p5.TableRow/get
getNum:
description: |
Retrieves a Float value from the TableRow's specified
column. The column may be specified by either its ID or
title.
- path: p5.TableRow/getNum
+ path: src\content\reference\en\p5.TableRow/getNum
getString:
description: |
Retrieves an String value from the TableRow's specified
column. The column may be specified by either its ID or
title.
- path: p5.TableRow/getString
+ path: src\content\reference\en\p5.TableRow/getString
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.TypedDict.mdx b/src/content/reference/en/p5/p5.TypedDict.mdx
index b68af92b04..b190601371 100644
--- a/src/content/reference/en/p5/p5.TypedDict.mdx
+++ b/src/content/reference/en/p5/p5.TypedDict.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/p5.TypedDict.js#L82
title: p5.TypedDict
module: Data
submodule: Dictionary
@@ -13,49 +16,49 @@ methods:
description: >
Returns the number of key-value pairs currently stored in the
Dictionary.
- path: p5.TypedDict/size
+ path: src\content\reference\en\p5.TypedDict/size
hasKey:
description: |
Returns true if the given key exists in the Dictionary,
otherwise returns false.
- path: p5.TypedDict/hasKey
+ path: src\content\reference\en\p5.TypedDict/hasKey
get:
description: |
Returns the value stored at the given key.
- path: p5.TypedDict/get
+ path: src\content\reference\en\p5.TypedDict/get
set:
description: >
Updates the value associated with the given key in case it already
exists
in the Dictionary. Otherwise a new key-value pair is added.
- path: p5.TypedDict/set
+ path: src\content\reference\en\p5.TypedDict/set
create:
description: |
Creates a new key-value pair in the Dictionary.
- path: p5.TypedDict/create
+ path: src\content\reference\en\p5.TypedDict/create
clear:
description: |
Removes all previously stored key-value pairs from the Dictionary.
- path: p5.TypedDict/clear
+ path: src\content\reference\en\p5.TypedDict/clear
remove:
description: >
Removes the key-value pair stored at the given key from the
Dictionary.
- path: p5.TypedDict/remove
+ path: src\content\reference\en\p5.TypedDict/remove
print:
description: >
Logs the set of items currently stored in the Dictionary to the
console.
- path: p5.TypedDict/print
+ path: src\content\reference\en\p5.TypedDict/print
saveTable:
description: |
Converts the Dictionary into a CSV file for local download.
- path: p5.TypedDict/saveTable
+ path: src\content\reference\en\p5.TypedDict/saveTable
saveJSON:
description: |
Converts the Dictionary into a JSON file for local download.
- path: p5.TypedDict/saveJSON
+ path: src\content\reference\en\p5.TypedDict/saveJSON
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.Vector.mdx b/src/content/reference/en/p5/p5.Vector.mdx
index 39daa8aed1..c2787bb4ff 100644
--- a/src/content/reference/en/p5/p5.Vector.mdx
+++ b/src/content/reference/en/p5/p5.Vector.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/p5.Vector.js#L11
title: p5.Vector
module: Math
submodule: Vector
@@ -122,7 +125,7 @@ methods:
console while
debugging.
- path: p5.Vector/toString
+ path: src\content\reference\en\p5.Vector/toString
set:
description: >
Sets the vector's x
, y
, and z
@@ -145,12 +148,12 @@ methods:
sets all the vector's
components to 0.
- path: p5.Vector/set
+ path: src\content\reference\en\p5.Vector/set
copy:
description: >
Returns a copy of the p5.Vector
object.
- path: p5.Vector/copy
+ path: src\content\reference\en\p5.Vector/copy
add:
description: >
Adds to a vector's x
, y
, and z
@@ -179,7 +182,7 @@ methods:
the
originals.
- path: p5.Vector/add
+ path: src\content\reference\en\p5.Vector/add
rem:
description: >
Performs modulo (remainder) division with a vector's x
,
@@ -212,7 +215,7 @@ methods:
change the
originals.
- path: p5.Vector/rem
+ path: src\content\reference\en\p5.Vector/rem
sub:
description: >
Subtracts from a vector's x
, y
, and
@@ -241,7 +244,7 @@ methods:
the
originals.
- path: p5.Vector/sub
+ path: src\content\reference\en\p5.Vector/sub
mult:
description: >
Multiplies a vector's x
, y
, and
@@ -275,7 +278,7 @@ methods:
the
originals.
- path: p5.Vector/mult
+ path: src\content\reference\en\p5.Vector/mult
div:
description: >
Divides a vector's x
, y
, and z
@@ -309,7 +312,7 @@ methods:
the
originals.
- path: p5.Vector/div
+ path: src\content\reference\en\p5.Vector/div
mag:
description: >
Calculates the magnitude (length) of the vector.
@@ -318,11 +321,11 @@ methods:
of a 2D vector
using components as in mag(x, y)
.
- path: p5.Vector/mag
+ path: src\content\reference\en\p5.Vector/mag
magSq:
description: |
Calculates the magnitude (length) of the vector squared.
- path: p5.Vector/magSq
+ path: src\content\reference\en\p5.Vector/magSq
dot:
description: >
Calculates the dot product of two vectors.
@@ -353,7 +356,7 @@ methods:
v2), is the same
as calling v1.dot(v2)
.
- path: p5.Vector/dot
+ path: src\content\reference\en\p5.Vector/dot
cross:
description: >
Calculates the cross product of two vectors.
@@ -370,7 +373,7 @@ methods:
p5.Vector.cross(v1, v2)
, is the same
as calling v1.cross(v2)
.
- path: p5.Vector/cross
+ path: src\content\reference\en\p5.Vector/cross
dist:
description: >
Calculates the distance between two points represented by vectors.
@@ -388,7 +391,7 @@ methods:
between points
using coordinates as in dist(x1, y1, x2, y2)
.
- path: p5.Vector/dist
+ path: src\content\reference\en\p5.Vector/dist
normalize:
description: >
Scales the components of a
- path: p5.Vector/normalize
+ path: src\content\reference\en\p5.Vector/normalize
limit:
description: >
Limits a vector's magnitude to a maximum value.
@@ -415,7 +418,7 @@ methods:
change the
original.
- path: p5.Vector/limit
+ path: src\content\reference\en\p5.Vector/limit
setMag:
description: >
Sets a vector's magnitude to a given value.
@@ -427,7 +430,7 @@ methods:
change the
original.
- path: p5.Vector/setMag
+ path: src\content\reference\en\p5.Vector/setMag
heading:
description: >
Calculates the angle a 2D vector makes with the positive x-axis.
@@ -449,7 +452,7 @@ methods:
p5.Vector.heading(v)
, works the
same way.
- path: p5.Vector/heading
+ path: src\content\reference\en\p5.Vector/heading
setHeading:
description: >
Rotates a 2D vector to a specific angle without changing its
@@ -467,7 +470,7 @@ methods:
the units of the current angleMode().
- path: p5.Vector/setHeading
+ path: src\content\reference\en\p5.Vector/setHeading
rotate:
description: >
Rotates a 2D vector by an angle without changing its magnitude.
@@ -492,7 +495,7 @@ methods:
doesn't change
the original.
- path: p5.Vector/rotate
+ path: src\content\reference\en\p5.Vector/rotate
angleBetween:
description: >
Calculates the angle between two vectors.
@@ -509,7 +512,7 @@ methods:
angles in the units of the current
angleMode().
- path: p5.Vector/angleBetween
+ path: src\content\reference\en\p5.Vector/angleBetween
lerp:
description: >
Calculates new x
, y
, and z
@@ -532,7 +535,7 @@ methods:
doesn't change
the original.
- path: p5.Vector/lerp
+ path: src\content\reference\en\p5.Vector/lerp
slerp:
description: >
Calculates a new heading and magnitude that are between two
@@ -565,7 +568,7 @@ methods:
doesn't change
the original.
- path: p5.Vector/slerp
+ path: src\content\reference\en\p5.Vector/slerp
reflect:
description: >
Reflects a vector about a line in 2D or a plane in 3D.
@@ -582,11 +585,11 @@ methods:
doesn't change
the original.
- path: p5.Vector/reflect
+ path: src\content\reference\en\p5.Vector/reflect
array:
description: |
Returns the vector's components as an array of numbers.
- path: p5.Vector/array
+ path: src\content\reference\en\p5.Vector/array
equals:
description: >
Checks whether all the vector's components are equal to another
@@ -615,23 +618,23 @@ methods:
interprets both parameters as p5.Vector objects.
- path: p5.Vector/equals
+ path: src\content\reference\en\p5.Vector/equals
fromAngle:
description: |
Creates a new 2D vector from an angle.
- path: p5.Vector/fromAngle
+ path: src\content\reference\en\p5.Vector/fromAngle
fromAngles:
description: |
Creates a new 3D vector from a pair of ISO spherical angles.
- path: p5.Vector/fromAngles
+ path: src\content\reference\en\p5.Vector/fromAngles
random2D:
description: |
Creates a new 2D unit vector with a random heading.
- path: p5.Vector/random2D
+ path: src\content\reference\en\p5.Vector/random2D
random3D:
description: |
Creates a new 3D unit vector with a random heading.
- path: p5.Vector/random3D
+ path: src\content\reference\en\p5.Vector/random3D
clampToZero:
description: >
Replaces the components of a https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/EPSILON
- path: p5.Vector/clampToZero
+ path: src\content\reference\en\p5.Vector/clampToZero
properties:
x:
description: |
The x component of the vector
- path: p5.Vector/x
+ path: src\content\reference\en\p5.Vector/x
'y':
description: |
The y component of the vector
- path: p5.Vector/y
+ path: src\content\reference\en\p5.Vector/y
z:
description: |
The z component of the vector
- path: p5.Vector/z
+ path: src\content\reference\en\p5.Vector/z
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.XML.mdx b/src/content/reference/en/p5/p5.XML.mdx
index bfa3c0c7e7..44f95f6572 100644
--- a/src/content/reference/en/p5/p5.XML.mdx
+++ b/src/content/reference/en/p5/p5.XML.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/p5.XML.js#L9
title: p5.XML
module: IO
submodule: Input
@@ -75,7 +78,7 @@ methods:
href="/reference/p5/p5.XML">p5.XML
object.
- path: p5.XML/getParent
+ path: src\content\reference\en\p5.XML/getParent
getName:
description: >
Returns the element's name as a String
.
@@ -84,7 +87,7 @@ methods:
JavaScript
has the name
language
.
- path: p5.XML/getName
+ path: src\content\reference\en\p5.XML/getName
setName:
description: >
Sets the element's tag name.
@@ -101,17 +104,17 @@ methods:
tag name
.
- path: p5.XML/setName
+ path: src\content\reference\en\p5.XML/setName
hasChildren:
description: >
Returns true
if the element has child elements and
false
if not.
- path: p5.XML/hasChildren
+ path: src\content\reference\en\p5.XML/hasChildren
listChildren:
description: |
Returns an array with the names of the element's child elements as
String
s.
- path: p5.XML/listChildren
+ path: src\content\reference\en\p5.XML/listChildren
getChildren:
description: >
Returns an array with the element's child elements as new
@@ -125,7 +128,7 @@ methods:
child elements
with the tag
.
- path: p5.XML/getChildren
+ path: src\content\reference\en\p5.XML/getChildren
getChild:
description: >
Returns the first matching child element as a new
@@ -142,7 +145,7 @@ methods:
myXML.getChild(1)
, then the child element at that index will
be returned.
- path: p5.XML/getChild
+ path: src\content\reference\en\p5.XML/getChild
addChild:
description: >
Adds a new child element and returns a reference to it.
@@ -154,7 +157,7 @@ methods:
myXML.addChild(otherXML)
inserts
otherXML
as a child element of myXML
.
- path: p5.XML/addChild
+ path: src\content\reference\en\p5.XML/addChild
removeChild:
description: >
Removes the first matching child element.
@@ -172,11 +175,11 @@ methods:
will be
removed.
- path: p5.XML/removeChild
+ path: src\content\reference\en\p5.XML/removeChild
getAttributeCount:
description: |
Returns the number of attributes the element has.
- path: p5.XML/getAttributeCount
+ path: src\content\reference\en\p5.XML/getAttributeCount
listAttributes:
description: >
Returns an Array
with the names of the element's
@@ -188,7 +191,7 @@ methods:
myXML.getNum() to return an
attribute's value.
- path: p5.XML/listAttributes
+ path: src\content\reference\en\p5.XML/listAttributes
hasAttribute:
description: >
Returns true
if the element has a given attribute and
@@ -205,7 +208,7 @@ methods:
myXML.getNum() to return an
attribute's value.
- path: p5.XML/hasAttribute
+ path: src\content\reference\en\p5.XML/hasAttribute
getNum:
description: >
Return an attribute's value as a Number
.
@@ -232,7 +235,7 @@ methods:
myXML.getNum() to return an
attribute's value.
- path: p5.XML/getNum
+ path: src\content\reference\en\p5.XML/getNum
getString:
description: >
Return an attribute's value as a string.
@@ -259,7 +262,7 @@ methods:
myXML.getNum() to return an
attribute's value.
- path: p5.XML/getString
+ path: src\content\reference\en\p5.XML/getString
setAttribute:
description: >
Sets an attribute to a given value.
@@ -276,7 +279,7 @@ methods:
id
attribute to the
value 123.
- path: p5.XML/setAttribute
+ path: src\content\reference\en\p5.XML/setAttribute
getContent:
description: >
Returns the element's content as a String
.
@@ -288,7 +291,7 @@ methods:
has no
content.
- path: p5.XML/getContent
+ path: src\content\reference\en\p5.XML/getContent
setContent:
description: >
Sets the element's content.
@@ -301,7 +304,7 @@ methods:
The parameter, content
, is a string with the element's new
content.
- path: p5.XML/setContent
+ path: src\content\reference\en\p5.XML/setContent
serialize:
description: >
Returns the element as a String
.
@@ -310,7 +313,7 @@ methods:
the network or
saving it to a file.
- path: p5.XML/serialize
+ path: src\content\reference\en\p5.XML/serialize
chainable: false
---
diff --git a/src/content/reference/en/p5/p5.mdx b/src/content/reference/en/p5/p5.mdx
index 5dc691ba37..7370595f27 100644
--- a/src/content/reference/en/p5/p5.mdx
+++ b/src/content/reference/en/p5/p5.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/main.js#L12
title: p5
module: IO
submodule: Output
diff --git a/src/content/reference/en/p5/pAccelerationX.mdx b/src/content/reference/en/p5/pAccelerationX.mdx
index 3f8b670561..da165377b9 100644
--- a/src/content/reference/en/p5/pAccelerationX.mdx
+++ b/src/content/reference/en/p5/pAccelerationX.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L90
title: pAccelerationX
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/pAccelerationY.mdx b/src/content/reference/en/p5/pAccelerationY.mdx
index d085f75f46..e2b86dc78c 100644
--- a/src/content/reference/en/p5/pAccelerationY.mdx
+++ b/src/content/reference/en/p5/pAccelerationY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L100
title: pAccelerationY
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/pAccelerationZ.mdx b/src/content/reference/en/p5/pAccelerationZ.mdx
index b8954c8efe..b07cde005a 100644
--- a/src/content/reference/en/p5/pAccelerationZ.mdx
+++ b/src/content/reference/en/p5/pAccelerationZ.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L110
title: pAccelerationZ
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/pRotationX.mdx b/src/content/reference/en/p5/pRotationX.mdx
index 3d73a4d59b..69ccef2c59 100644
--- a/src/content/reference/en/p5/pRotationX.mdx
+++ b/src/content/reference/en/p5/pRotationX.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L234
title: pRotationX
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/pRotationY.mdx b/src/content/reference/en/p5/pRotationY.mdx
index a8a67df6c7..ce04622716 100644
--- a/src/content/reference/en/p5/pRotationY.mdx
+++ b/src/content/reference/en/p5/pRotationY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L278
title: pRotationY
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/pRotationZ.mdx b/src/content/reference/en/p5/pRotationZ.mdx
index 6751e5b90e..9ee4d2a36c 100644
--- a/src/content/reference/en/p5/pRotationZ.mdx
+++ b/src/content/reference/en/p5/pRotationZ.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L321
title: pRotationZ
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/paletteLerp.mdx b/src/content/reference/en/p5/paletteLerp.mdx
index 281627209d..7aad5bdd08 100644
--- a/src/content/reference/en/p5/paletteLerp.mdx
+++ b/src/content/reference/en/p5/paletteLerp.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/creating_reading.js#L1079
title: paletteLerp
module: Color
submodule: Creating & Reading
diff --git a/src/content/reference/en/p5/panorama.mdx b/src/content/reference/en/p5/panorama.mdx
index 04dc04b3a3..767a59a909 100644
--- a/src/content/reference/en/p5/panorama.mdx
+++ b/src/content/reference/en/p5/panorama.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/light.js#L1021
title: panorama
module: 3D
submodule: Lights
diff --git a/src/content/reference/en/p5/perspective.mdx b/src/content/reference/en/p5/perspective.mdx
index 52fd7e8575..664204a333 100644
--- a/src/content/reference/en/p5/perspective.mdx
+++ b/src/content/reference/en/p5/perspective.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L148
title: perspective
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5/pixelDensity.mdx b/src/content/reference/en/p5/pixelDensity.mdx
index 6dcd2f93f3..96f3b6ea31 100644
--- a/src/content/reference/en/p5/pixelDensity.mdx
+++ b/src/content/reference/en/p5/pixelDensity.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L1005
title: pixelDensity
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/pixels.mdx b/src/content/reference/en/p5/pixels.mdx
index e10644dcc1..a627f8e34d 100644
--- a/src/content/reference/en/p5/pixels.mdx
+++ b/src/content/reference/en/p5/pixels.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/pixels.js#L12
title: pixels
module: Image
submodule: Pixels
diff --git a/src/content/reference/en/p5/plane.mdx b/src/content/reference/en/p5/plane.mdx
index 1d9b2523d4..3e1bf2e35b 100644
--- a/src/content/reference/en/p5/plane.mdx
+++ b/src/content/reference/en/p5/plane.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/3d_primitives.js#L866
title: plane
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5/pmouseX.mdx b/src/content/reference/en/p5/pmouseX.mdx
index 36ec925c66..2598f612c1 100644
--- a/src/content/reference/en/p5/pmouseX.mdx
+++ b/src/content/reference/en/p5/pmouseX.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L333
title: pmouseX
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/pmouseY.mdx b/src/content/reference/en/p5/pmouseY.mdx
index b13bceb56e..4db9e451f1 100644
--- a/src/content/reference/en/p5/pmouseY.mdx
+++ b/src/content/reference/en/p5/pmouseY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L398
title: pmouseY
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/point.mdx b/src/content/reference/en/p5/point.mdx
index b01bfe8778..feadcaf435 100644
--- a/src/content/reference/en/p5/point.mdx
+++ b/src/content/reference/en/p5/point.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/2d_primitives.js#L722
title: point
module: Shape
submodule: 2D Primitives
diff --git a/src/content/reference/en/p5/pointLight.mdx b/src/content/reference/en/p5/pointLight.mdx
index 4bc73595cd..233763261e 100644
--- a/src/content/reference/en/p5/pointLight.mdx
+++ b/src/content/reference/en/p5/pointLight.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/light.js#L683
title: pointLight
module: 3D
submodule: Lights
diff --git a/src/content/reference/en/p5/pop.mdx b/src/content/reference/en/p5/pop.mdx
index 367998f3b6..13a082855e 100644
--- a/src/content/reference/en/p5/pop.mdx
+++ b/src/content/reference/en/p5/pop.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/structure.js#L553
title: pop
module: Structure
submodule: Structure
diff --git a/src/content/reference/en/p5/pow.mdx b/src/content/reference/en/p5/pow.mdx
index 675e1d897d..f4e3786599 100644
--- a/src/content/reference/en/p5/pow.mdx
+++ b/src/content/reference/en/p5/pow.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L815
title: pow
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/preload.mdx b/src/content/reference/en/p5/preload.mdx
index d406aa1f57..0df1c3ecd0 100644
--- a/src/content/reference/en/p5/preload.mdx
+++ b/src/content/reference/en/p5/preload.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/main.js#L41
title: preload
module: Structure
submodule: Structure
diff --git a/src/content/reference/en/p5/print.mdx b/src/content/reference/en/p5/print.mdx
index d7e670846b..987b6cec2b 100644
--- a/src/content/reference/en/p5/print.mdx
+++ b/src/content/reference/en/p5/print.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L21
title: print
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/push.mdx b/src/content/reference/en/p5/push.mdx
index cfaf3defa7..2b0884ed27 100644
--- a/src/content/reference/en/p5/push.mdx
+++ b/src/content/reference/en/p5/push.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/structure.js#L269
title: push
module: Structure
submodule: Structure
diff --git a/src/content/reference/en/p5/pwinMouseX.mdx b/src/content/reference/en/p5/pwinMouseX.mdx
index 8e820203bb..168eed4884 100644
--- a/src/content/reference/en/p5/pwinMouseX.mdx
+++ b/src/content/reference/en/p5/pwinMouseX.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L545
title: pwinMouseX
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/pwinMouseY.mdx b/src/content/reference/en/p5/pwinMouseY.mdx
index bda03d0704..2ffda7026c 100644
--- a/src/content/reference/en/p5/pwinMouseY.mdx
+++ b/src/content/reference/en/p5/pwinMouseY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L616
title: pwinMouseY
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/quad.mdx b/src/content/reference/en/p5/quad.mdx
index 71932f1aae..274e5a5977 100644
--- a/src/content/reference/en/p5/quad.mdx
+++ b/src/content/reference/en/p5/quad.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/2d_primitives.js#L914
title: quad
module: Shape
submodule: 2D Primitives
diff --git a/src/content/reference/en/p5/quadraticVertex.mdx b/src/content/reference/en/p5/quadraticVertex.mdx
index 2823a5da26..acf061d64c 100644
--- a/src/content/reference/en/p5/quadraticVertex.mdx
+++ b/src/content/reference/en/p5/quadraticVertex.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/vertex.js#L1569
title: quadraticVertex
module: Shape
submodule: Vertex
diff --git a/src/content/reference/en/p5/radians.mdx b/src/content/reference/en/p5/radians.mdx
index 06e14a25f7..ee4ee1f514 100644
--- a/src/content/reference/en/p5/radians.mdx
+++ b/src/content/reference/en/p5/radians.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/trigonometry.js#L521
title: radians
module: Math
submodule: Trigonometry
diff --git a/src/content/reference/en/p5/random.mdx b/src/content/reference/en/p5/random.mdx
index 2b381cc197..0ebc88afbf 100644
--- a/src/content/reference/en/p5/random.mdx
+++ b/src/content/reference/en/p5/random.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/random.js#L86
title: random
module: Math
submodule: Random
diff --git a/src/content/reference/en/p5/randomGaussian.mdx b/src/content/reference/en/p5/randomGaussian.mdx
index af550fb512..a39c06aa60 100644
--- a/src/content/reference/en/p5/randomGaussian.mdx
+++ b/src/content/reference/en/p5/randomGaussian.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/random.js#L292
title: randomGaussian
module: Math
submodule: Random
diff --git a/src/content/reference/en/p5/randomSeed.mdx b/src/content/reference/en/p5/randomSeed.mdx
index 36fa0da316..f5de1a7bbf 100644
--- a/src/content/reference/en/p5/randomSeed.mdx
+++ b/src/content/reference/en/p5/randomSeed.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/random.js#L37
title: randomSeed
module: Math
submodule: Random
diff --git a/src/content/reference/en/p5/rect.mdx b/src/content/reference/en/p5/rect.mdx
index c7d4bdabf1..027f43340c 100644
--- a/src/content/reference/en/p5/rect.mdx
+++ b/src/content/reference/en/p5/rect.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/2d_primitives.js#L1077
title: rect
module: Shape
submodule: 2D Primitives
diff --git a/src/content/reference/en/p5/rectMode.mdx b/src/content/reference/en/p5/rectMode.mdx
index c0301b1344..01b04fe553 100644
--- a/src/content/reference/en/p5/rectMode.mdx
+++ b/src/content/reference/en/p5/rectMode.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/attributes.js#L184
title: rectMode
module: Shape
submodule: Attributes
diff --git a/src/content/reference/en/p5/red.mdx b/src/content/reference/en/p5/red.mdx
index 53caf4c44c..e84fc1a6ff 100644
--- a/src/content/reference/en/p5/red.mdx
+++ b/src/content/reference/en/p5/red.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/creating_reading.js#L1279
title: red
module: Color
submodule: Creating & Reading
diff --git a/src/content/reference/en/p5/redraw.mdx b/src/content/reference/en/p5/redraw.mdx
index abca2ea938..de924cd780 100644
--- a/src/content/reference/en/p5/redraw.mdx
+++ b/src/content/reference/en/p5/redraw.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/structure.js#L838
title: redraw
module: Structure
submodule: Structure
diff --git a/src/content/reference/en/p5/remove.mdx b/src/content/reference/en/p5/remove.mdx
index 9d193b668f..5823a5b6c6 100644
--- a/src/content/reference/en/p5/remove.mdx
+++ b/src/content/reference/en/p5/remove.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/main.js#L559
title: remove
module: Structure
submodule: Structure
diff --git a/src/content/reference/en/p5/removeElements.mdx b/src/content/reference/en/p5/removeElements.mdx
index 1256f7e67b..5f63037e75 100644
--- a/src/content/reference/en/p5/removeElements.mdx
+++ b/src/content/reference/en/p5/removeElements.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L256
title: removeElements
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/removeItem.mdx b/src/content/reference/en/p5/removeItem.mdx
index ac354f2224..9c0e79cb91 100644
--- a/src/content/reference/en/p5/removeItem.mdx
+++ b/src/content/reference/en/p5/removeItem.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/local_storage.js#L380
title: removeItem
module: Data
submodule: LocalStorage
diff --git a/src/content/reference/en/p5/requestPointerLock.mdx b/src/content/reference/en/p5/requestPointerLock.mdx
index bd7e3d16c5..679d0604a5 100644
--- a/src/content/reference/en/p5/requestPointerLock.mdx
+++ b/src/content/reference/en/p5/requestPointerLock.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L1880
title: requestPointerLock
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/resetMatrix.mdx b/src/content/reference/en/p5/resetMatrix.mdx
index f8c82f3c73..7101523690 100644
--- a/src/content/reference/en/p5/resetMatrix.mdx
+++ b/src/content/reference/en/p5/resetMatrix.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/transform.js#L246
title: resetMatrix
module: Transform
submodule: Transform
diff --git a/src/content/reference/en/p5/resetShader.mdx b/src/content/reference/en/p5/resetShader.mdx
index a0fb62d812..cefff06ed3 100644
--- a/src/content/reference/en/p5/resetShader.mdx
+++ b/src/content/reference/en/p5/resetShader.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L1628
title: resetShader
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/resizeCanvas.mdx b/src/content/reference/en/p5/resizeCanvas.mdx
index 4b4cd46c00..bab6d9464a 100644
--- a/src/content/reference/en/p5/resizeCanvas.mdx
+++ b/src/content/reference/en/p5/resizeCanvas.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/rendering.js#L221
title: resizeCanvas
module: Rendering
submodule: Rendering
diff --git a/src/content/reference/en/p5/reverse.mdx b/src/content/reference/en/p5/reverse.mdx
index d2b6df8fd5..52fce55cfb 100644
--- a/src/content/reference/en/p5/reverse.mdx
+++ b/src/content/reference/en/p5/reverse.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/array_functions.js#L141
title: reverse
module: Data
submodule: Array Functions
diff --git a/src/content/reference/en/p5/rotate.mdx b/src/content/reference/en/p5/rotate.mdx
index 30dc265216..a439b592a4 100644
--- a/src/content/reference/en/p5/rotate.mdx
+++ b/src/content/reference/en/p5/rotate.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/transform.js#L289
title: rotate
module: Transform
submodule: Transform
diff --git a/src/content/reference/en/p5/rotateX.mdx b/src/content/reference/en/p5/rotateX.mdx
index 157dfb2fa2..7959e02ba7 100644
--- a/src/content/reference/en/p5/rotateX.mdx
+++ b/src/content/reference/en/p5/rotateX.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/transform.js#L470
title: rotateX
module: Transform
submodule: Transform
diff --git a/src/content/reference/en/p5/rotateY.mdx b/src/content/reference/en/p5/rotateY.mdx
index d84c3ef63c..e1d9058d32 100644
--- a/src/content/reference/en/p5/rotateY.mdx
+++ b/src/content/reference/en/p5/rotateY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/transform.js#L606
title: rotateY
module: Transform
submodule: Transform
diff --git a/src/content/reference/en/p5/rotateZ.mdx b/src/content/reference/en/p5/rotateZ.mdx
index 42ce80165a..efaba0376b 100644
--- a/src/content/reference/en/p5/rotateZ.mdx
+++ b/src/content/reference/en/p5/rotateZ.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/transform.js#L742
title: rotateZ
module: Transform
submodule: Transform
diff --git a/src/content/reference/en/p5/rotationX.mdx b/src/content/reference/en/p5/rotationX.mdx
index 2283679bba..ecedb27299 100644
--- a/src/content/reference/en/p5/rotationX.mdx
+++ b/src/content/reference/en/p5/rotationX.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L131
title: rotationX
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/rotationY.mdx b/src/content/reference/en/p5/rotationY.mdx
index 5787d7c2e7..d44021ba62 100644
--- a/src/content/reference/en/p5/rotationY.mdx
+++ b/src/content/reference/en/p5/rotationY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L164
title: rotationY
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/rotationZ.mdx b/src/content/reference/en/p5/rotationZ.mdx
index f2d302282f..772cbbf9db 100644
--- a/src/content/reference/en/p5/rotationZ.mdx
+++ b/src/content/reference/en/p5/rotationZ.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L197
title: rotationZ
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/round.mdx b/src/content/reference/en/p5/round.mdx
index a97ad50ec8..f67f2a1902 100644
--- a/src/content/reference/en/p5/round.mdx
+++ b/src/content/reference/en/p5/round.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L861
title: round
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/sampleRate.mdx b/src/content/reference/en/p5/sampleRate.mdx
index 32eeccf3e6..b25a9f243c 100644
--- a/src/content/reference/en/p5/sampleRate.mdx
+++ b/src/content/reference/en/p5/sampleRate.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L811
title: sampleRate
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5/saturation.mdx b/src/content/reference/en/p5/saturation.mdx
index 2940cc659f..c40892fab4 100644
--- a/src/content/reference/en/p5/saturation.mdx
+++ b/src/content/reference/en/p5/saturation.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/creating_reading.js#L1415
title: saturation
module: Color
submodule: Creating & Reading
diff --git a/src/content/reference/en/p5/save.mdx b/src/content/reference/en/p5/save.mdx
index 9ed93996be..51b916a3b8 100644
--- a/src/content/reference/en/p5/save.mdx
+++ b/src/content/reference/en/p5/save.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L1835
title: save
module: IO
submodule: Output
diff --git a/src/content/reference/en/p5/saveCanvas.mdx b/src/content/reference/en/p5/saveCanvas.mdx
index 2aa632ebdc..da8b730130 100644
--- a/src/content/reference/en/p5/saveCanvas.mdx
+++ b/src/content/reference/en/p5/saveCanvas.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/image.js#L153
title: saveCanvas
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5/saveFrames.mdx b/src/content/reference/en/p5/saveFrames.mdx
index c77c3a0335..a4136e13e1 100644
--- a/src/content/reference/en/p5/saveFrames.mdx
+++ b/src/content/reference/en/p5/saveFrames.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/image.js#L561
title: saveFrames
module: Image
submodule: Image
diff --git a/src/content/reference/en/p5/saveGif.mdx b/src/content/reference/en/p5/saveGif.mdx
index af4205d9bf..1a0b90295e 100644
--- a/src/content/reference/en/p5/saveGif.mdx
+++ b/src/content/reference/en/p5/saveGif.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/loading_displaying.js#L204
title: saveGif
module: Image
submodule: Loading & Displaying
diff --git a/src/content/reference/en/p5/saveJSON.mdx b/src/content/reference/en/p5/saveJSON.mdx
index a20fcc49be..52e67039ad 100644
--- a/src/content/reference/en/p5/saveJSON.mdx
+++ b/src/content/reference/en/p5/saveJSON.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L1979
title: saveJSON
module: IO
submodule: Output
diff --git a/src/content/reference/en/p5/saveSound.mdx b/src/content/reference/en/p5/saveSound.mdx
index 0676ce11fe..1f0ac7495a 100644
--- a/src/content/reference/en/p5/saveSound.mdx
+++ b/src/content/reference/en/p5/saveSound.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L1145
title: saveSound
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5/saveStrings.mdx b/src/content/reference/en/p5/saveStrings.mdx
index a383012902..408ae50db7 100644
--- a/src/content/reference/en/p5/saveStrings.mdx
+++ b/src/content/reference/en/p5/saveStrings.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L2118
title: saveStrings
module: IO
submodule: Output
diff --git a/src/content/reference/en/p5/saveTable.mdx b/src/content/reference/en/p5/saveTable.mdx
index 9157763e58..0eb1e05f45 100644
--- a/src/content/reference/en/p5/saveTable.mdx
+++ b/src/content/reference/en/p5/saveTable.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/io/files.js#L2275
title: saveTable
module: IO
submodule: Output
diff --git a/src/content/reference/en/p5/scale.mdx b/src/content/reference/en/p5/scale.mdx
index c3eab0e1b2..6d26cd146b 100644
--- a/src/content/reference/en/p5/scale.mdx
+++ b/src/content/reference/en/p5/scale.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/transform.js#L878
title: scale
module: Transform
submodule: Transform
diff --git a/src/content/reference/en/p5/second.mdx b/src/content/reference/en/p5/second.mdx
index 5400301dce..3ea7d1e61c 100644
--- a/src/content/reference/en/p5/second.mdx
+++ b/src/content/reference/en/p5/second.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/time_date.js#L277
title: second
module: IO
submodule: Time & Date
diff --git a/src/content/reference/en/p5/select.mdx b/src/content/reference/en/p5/select.mdx
index 01495847f5..0cbfa78156 100644
--- a/src/content/reference/en/p5/select.mdx
+++ b/src/content/reference/en/p5/select.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L21
title: select
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/selectAll.mdx b/src/content/reference/en/p5/selectAll.mdx
index 27f654eb8b..1a5134303f 100644
--- a/src/content/reference/en/p5/selectAll.mdx
+++ b/src/content/reference/en/p5/selectAll.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/dom/dom.js#L109
title: selectAll
module: DOM
submodule: DOM
diff --git a/src/content/reference/en/p5/set.mdx b/src/content/reference/en/p5/set.mdx
index 95841ee8c4..7b4fa874db 100644
--- a/src/content/reference/en/p5/set.mdx
+++ b/src/content/reference/en/p5/set.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/pixels.js#L997
title: set
module: Image
submodule: Pixels
diff --git a/src/content/reference/en/p5/setAttributes.mdx b/src/content/reference/en/p5/setAttributes.mdx
index 154f56f4fc..71dc8128ba 100644
--- a/src/content/reference/en/p5/setAttributes.mdx
+++ b/src/content/reference/en/p5/setAttributes.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.RendererGL.js#L118
title: setAttributes
module: Rendering
submodule: Rendering
diff --git a/src/content/reference/en/p5/setBPM.mdx b/src/content/reference/en/p5/setBPM.mdx
index b79bc041ee..20bf450349 100644
--- a/src/content/reference/en/p5/setBPM.mdx
+++ b/src/content/reference/en/p5/setBPM.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L9084
title: setBPM
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5/setCamera.mdx b/src/content/reference/en/p5/setCamera.mdx
index 486edb0301..80150020c8 100644
--- a/src/content/reference/en/p5/setCamera.mdx
+++ b/src/content/reference/en/p5/setCamera.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/p5.Camera.js#L3897
title: setCamera
module: 3D
submodule: Camera
diff --git a/src/content/reference/en/p5/setMoveThreshold.mdx b/src/content/reference/en/p5/setMoveThreshold.mdx
index e991e482d3..64650ba566 100644
--- a/src/content/reference/en/p5/setMoveThreshold.mdx
+++ b/src/content/reference/en/p5/setMoveThreshold.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L417
title: setMoveThreshold
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/setShakeThreshold.mdx b/src/content/reference/en/p5/setShakeThreshold.mdx
index 188422faf2..abe94f6f94 100644
--- a/src/content/reference/en/p5/setShakeThreshold.mdx
+++ b/src/content/reference/en/p5/setShakeThreshold.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L459
title: setShakeThreshold
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/setup.mdx b/src/content/reference/en/p5/setup.mdx
index e300ec51a1..b6e1f8b5c8 100644
--- a/src/content/reference/en/p5/setup.mdx
+++ b/src/content/reference/en/p5/setup.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/main.js#L87
title: setup
module: Structure
submodule: Structure
diff --git a/src/content/reference/en/p5/shader.mdx b/src/content/reference/en/p5/shader.mdx
index ac6c0f2524..31d222a7fa 100644
--- a/src/content/reference/en/p5/shader.mdx
+++ b/src/content/reference/en/p5/shader.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L682
title: shader
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/shearX.mdx b/src/content/reference/en/p5/shearX.mdx
index 695c0ebbcf..b44cd12aa5 100644
--- a/src/content/reference/en/p5/shearX.mdx
+++ b/src/content/reference/en/p5/shearX.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/transform.js#L1069
title: shearX
module: Transform
submodule: Transform
diff --git a/src/content/reference/en/p5/shearY.mdx b/src/content/reference/en/p5/shearY.mdx
index 3550b70cc7..070d0412c8 100644
--- a/src/content/reference/en/p5/shearY.mdx
+++ b/src/content/reference/en/p5/shearY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/transform.js#L1146
title: shearY
module: Transform
submodule: Transform
diff --git a/src/content/reference/en/p5/shininess.mdx b/src/content/reference/en/p5/shininess.mdx
index 2e125ae376..1039bb72bb 100644
--- a/src/content/reference/en/p5/shininess.mdx
+++ b/src/content/reference/en/p5/shininess.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L2998
title: shininess
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/shorten.mdx b/src/content/reference/en/p5/shorten.mdx
index 3bdbd4d352..492b2c50c8 100644
--- a/src/content/reference/en/p5/shorten.mdx
+++ b/src/content/reference/en/p5/shorten.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/array_functions.js#L161
title: shorten
module: Data
submodule: Array Functions
diff --git a/src/content/reference/en/p5/shuffle.mdx b/src/content/reference/en/p5/shuffle.mdx
index e699f36ba8..198d74d4be 100644
--- a/src/content/reference/en/p5/shuffle.mdx
+++ b/src/content/reference/en/p5/shuffle.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/array_functions.js#L185
title: shuffle
module: Data
submodule: Array Functions
diff --git a/src/content/reference/en/p5/sin.mdx b/src/content/reference/en/p5/sin.mdx
index 018ea8d0af..0292d160f4 100644
--- a/src/content/reference/en/p5/sin.mdx
+++ b/src/content/reference/en/p5/sin.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/trigonometry.js#L363
title: sin
module: Math
submodule: Trigonometry
diff --git a/src/content/reference/en/p5/smooth.mdx b/src/content/reference/en/p5/smooth.mdx
index 8ad51318e0..9d91b2883a 100644
--- a/src/content/reference/en/p5/smooth.mdx
+++ b/src/content/reference/en/p5/smooth.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/attributes.js#L303
title: smooth
module: Shape
submodule: Attributes
diff --git a/src/content/reference/en/p5/sort.mdx b/src/content/reference/en/p5/sort.mdx
index f26c3e2eb6..fe9c02993c 100644
--- a/src/content/reference/en/p5/sort.mdx
+++ b/src/content/reference/en/p5/sort.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/array_functions.js#L300
title: sort
module: Data
submodule: Array Functions
diff --git a/src/content/reference/en/p5/soundFormats.mdx b/src/content/reference/en/p5/soundFormats.mdx
index 180a2f116d..b534766cf8 100644
--- a/src/content/reference/en/p5/soundFormats.mdx
+++ b/src/content/reference/en/p5/soundFormats.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L925
title: soundFormats
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5/soundOut.mdx b/src/content/reference/en/p5/soundOut.mdx
index b18a31404e..a0b5b47df3 100644
--- a/src/content/reference/en/p5/soundOut.mdx
+++ b/src/content/reference/en/p5/soundOut.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L782
title: soundOut
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5/specularColor.mdx b/src/content/reference/en/p5/specularColor.mdx
index 3b7be5aaf1..b6618f247a 100644
--- a/src/content/reference/en/p5/specularColor.mdx
+++ b/src/content/reference/en/p5/specularColor.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/light.js#L205
title: specularColor
module: 3D
submodule: Lights
diff --git a/src/content/reference/en/p5/specularMaterial.mdx b/src/content/reference/en/p5/specularMaterial.mdx
index 4707646220..29704fab49 100644
--- a/src/content/reference/en/p5/specularMaterial.mdx
+++ b/src/content/reference/en/p5/specularMaterial.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L2743
title: specularMaterial
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/sphere.mdx b/src/content/reference/en/p5/sphere.mdx
index 1abd31a573..1bf8256899 100644
--- a/src/content/reference/en/p5/sphere.mdx
+++ b/src/content/reference/en/p5/sphere.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/3d_primitives.js#L1227
title: sphere
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5/splice.mdx b/src/content/reference/en/p5/splice.mdx
index 41cd7cb3e9..25913e8fb7 100644
--- a/src/content/reference/en/p5/splice.mdx
+++ b/src/content/reference/en/p5/splice.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/array_functions.js#L346
title: splice
module: Data
submodule: Array Functions
diff --git a/src/content/reference/en/p5/split.mdx b/src/content/reference/en/p5/split.mdx
index 1828d63fbd..fc0468c344 100644
--- a/src/content/reference/en/p5/split.mdx
+++ b/src/content/reference/en/p5/split.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/string_functions.js#L690
title: split
module: Data
submodule: String Functions
diff --git a/src/content/reference/en/p5/splitTokens.mdx b/src/content/reference/en/p5/splitTokens.mdx
index 223af37fd3..24f5c97d17 100644
--- a/src/content/reference/en/p5/splitTokens.mdx
+++ b/src/content/reference/en/p5/splitTokens.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/string_functions.js#L751
title: splitTokens
module: Data
submodule: String Functions
diff --git a/src/content/reference/en/p5/spotLight.mdx b/src/content/reference/en/p5/spotLight.mdx
index aa678fe888..b2f3816a81 100644
--- a/src/content/reference/en/p5/spotLight.mdx
+++ b/src/content/reference/en/p5/spotLight.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/light.js#L1272
title: spotLight
module: 3D
submodule: Lights
diff --git a/src/content/reference/en/p5/sq.mdx b/src/content/reference/en/p5/sq.mdx
index 11914c7729..11b77be974 100644
--- a/src/content/reference/en/p5/sq.mdx
+++ b/src/content/reference/en/p5/sq.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L928
title: sq
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/sqrt.mdx b/src/content/reference/en/p5/sqrt.mdx
index 254d390ac0..6bb377c331 100644
--- a/src/content/reference/en/p5/sqrt.mdx
+++ b/src/content/reference/en/p5/sqrt.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/calculation.js#L988
title: sqrt
module: Math
submodule: Calculation
diff --git a/src/content/reference/en/p5/square.mdx b/src/content/reference/en/p5/square.mdx
index 94486a0b74..979b3254ff 100644
--- a/src/content/reference/en/p5/square.mdx
+++ b/src/content/reference/en/p5/square.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/2d_primitives.js#L1215
title: square
module: Shape
submodule: 2D Primitives
diff --git a/src/content/reference/en/p5/storeItem.mdx b/src/content/reference/en/p5/storeItem.mdx
index a8b9effcdd..3d19ea654f 100644
--- a/src/content/reference/en/p5/storeItem.mdx
+++ b/src/content/reference/en/p5/storeItem.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/data/local_storage.js#L10
title: storeItem
module: Data
submodule: LocalStorage
diff --git a/src/content/reference/en/p5/str.mdx b/src/content/reference/en/p5/str.mdx
index 4a3da99706..f3f2ad2bf9 100644
--- a/src/content/reference/en/p5/str.mdx
+++ b/src/content/reference/en/p5/str.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/conversion.js#L232
title: str
module: Data
submodule: Conversion
diff --git a/src/content/reference/en/p5/stroke.mdx b/src/content/reference/en/p5/stroke.mdx
index ada5111cb6..13124f1203 100644
--- a/src/content/reference/en/p5/stroke.mdx
+++ b/src/content/reference/en/p5/stroke.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/color/setting.js#L1335
title: stroke
module: Color
submodule: Setting
diff --git a/src/content/reference/en/p5/strokeCap.mdx b/src/content/reference/en/p5/strokeCap.mdx
index b089fcbd7b..00c098fc74 100644
--- a/src/content/reference/en/p5/strokeCap.mdx
+++ b/src/content/reference/en/p5/strokeCap.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/attributes.js#L388
title: strokeCap
module: Shape
submodule: Attributes
diff --git a/src/content/reference/en/p5/strokeJoin.mdx b/src/content/reference/en/p5/strokeJoin.mdx
index 3b4ca8fcbb..3248213eff 100644
--- a/src/content/reference/en/p5/strokeJoin.mdx
+++ b/src/content/reference/en/p5/strokeJoin.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/attributes.js#L442
title: strokeJoin
module: Shape
submodule: Attributes
diff --git a/src/content/reference/en/p5/strokeWeight.mdx b/src/content/reference/en/p5/strokeWeight.mdx
index 8d4a6e0332..be55ec9df3 100644
--- a/src/content/reference/en/p5/strokeWeight.mdx
+++ b/src/content/reference/en/p5/strokeWeight.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/attributes.js#L541
title: strokeWeight
module: Shape
submodule: Attributes
diff --git a/src/content/reference/en/p5/subset.mdx b/src/content/reference/en/p5/subset.mdx
index 0499618abb..663884c8b7 100644
--- a/src/content/reference/en/p5/subset.mdx
+++ b/src/content/reference/en/p5/subset.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/array_functions.js#L381
title: subset
module: Data
submodule: Array Functions
diff --git a/src/content/reference/en/p5/tan.mdx b/src/content/reference/en/p5/tan.mdx
index 5fc10331cb..f7f0070af2 100644
--- a/src/content/reference/en/p5/tan.mdx
+++ b/src/content/reference/en/p5/tan.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/math/trigonometry.js#L445
title: tan
module: Math
submodule: Trigonometry
diff --git a/src/content/reference/en/p5/text.mdx b/src/content/reference/en/p5/text.mdx
index baf19d1b3a..1e54f9312f 100644
--- a/src/content/reference/en/p5/text.mdx
+++ b/src/content/reference/en/p5/text.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/typography/loading_displaying.js#L182
title: text
module: Typography
submodule: Loading & Displaying
diff --git a/src/content/reference/en/p5/textAlign.mdx b/src/content/reference/en/p5/textAlign.mdx
index 3a7f169c71..f059031dc2 100644
--- a/src/content/reference/en/p5/textAlign.mdx
+++ b/src/content/reference/en/p5/textAlign.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/typography/attributes.js#L11
title: textAlign
module: Typography
submodule: Attributes
diff --git a/src/content/reference/en/p5/textAscent.mdx b/src/content/reference/en/p5/textAscent.mdx
index 3e350242ca..99d3380548 100644
--- a/src/content/reference/en/p5/textAscent.mdx
+++ b/src/content/reference/en/p5/textAscent.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/typography/attributes.js#L337
title: textAscent
module: Typography
submodule: Attributes
diff --git a/src/content/reference/en/p5/textDescent.mdx b/src/content/reference/en/p5/textDescent.mdx
index 9c9cd6ad42..e96e70e1f5 100644
--- a/src/content/reference/en/p5/textDescent.mdx
+++ b/src/content/reference/en/p5/textDescent.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/typography/attributes.js#L396
title: textDescent
module: Typography
submodule: Attributes
diff --git a/src/content/reference/en/p5/textFont.mdx b/src/content/reference/en/p5/textFont.mdx
index f16eeb0913..939c108272 100644
--- a/src/content/reference/en/p5/textFont.mdx
+++ b/src/content/reference/en/p5/textFont.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/typography/loading_displaying.js#L335
title: textFont
module: Typography
submodule: Loading & Displaying
diff --git a/src/content/reference/en/p5/textLeading.mdx b/src/content/reference/en/p5/textLeading.mdx
index dc61f5433b..1b0ac7c6d1 100644
--- a/src/content/reference/en/p5/textLeading.mdx
+++ b/src/content/reference/en/p5/textLeading.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/typography/attributes.js#L107
title: textLeading
module: Typography
submodule: Attributes
diff --git a/src/content/reference/en/p5/textOutput.mdx b/src/content/reference/en/p5/textOutput.mdx
index 28bc163b8a..88b5101aa5 100644
--- a/src/content/reference/en/p5/textOutput.mdx
+++ b/src/content/reference/en/p5/textOutput.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/accessibility/outputs.js#L10
title: textOutput
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/textSize.mdx b/src/content/reference/en/p5/textSize.mdx
index d23b3cfa2e..c5a1e6d34d 100644
--- a/src/content/reference/en/p5/textSize.mdx
+++ b/src/content/reference/en/p5/textSize.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/typography/attributes.js#L151
title: textSize
module: Typography
submodule: Attributes
diff --git a/src/content/reference/en/p5/textStyle.mdx b/src/content/reference/en/p5/textStyle.mdx
index 7110406ac6..249e280164 100644
--- a/src/content/reference/en/p5/textStyle.mdx
+++ b/src/content/reference/en/p5/textStyle.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/typography/attributes.js#L197
title: textStyle
module: Typography
submodule: Attributes
diff --git a/src/content/reference/en/p5/textWidth.mdx b/src/content/reference/en/p5/textWidth.mdx
index b537b164a5..35bf4b099f 100644
--- a/src/content/reference/en/p5/textWidth.mdx
+++ b/src/content/reference/en/p5/textWidth.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/typography/attributes.js#L253
title: textWidth
module: Typography
submodule: Attributes
diff --git a/src/content/reference/en/p5/textWrap.mdx b/src/content/reference/en/p5/textWrap.mdx
index 75b274d384..60ce38c385 100644
--- a/src/content/reference/en/p5/textWrap.mdx
+++ b/src/content/reference/en/p5/textWrap.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/typography/attributes.js#L462
title: textWrap
module: Typography
submodule: Attributes
diff --git a/src/content/reference/en/p5/texture.mdx b/src/content/reference/en/p5/texture.mdx
index 0287a33787..c74a9ad304 100644
--- a/src/content/reference/en/p5/texture.mdx
+++ b/src/content/reference/en/p5/texture.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L1716
title: texture
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/textureMode.mdx b/src/content/reference/en/p5/textureMode.mdx
index dcdb53038a..83c0b4dffc 100644
--- a/src/content/reference/en/p5/textureMode.mdx
+++ b/src/content/reference/en/p5/textureMode.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L1903
title: textureMode
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/textureWrap.mdx b/src/content/reference/en/p5/textureWrap.mdx
index def9b93807..827317a832 100644
--- a/src/content/reference/en/p5/textureWrap.mdx
+++ b/src/content/reference/en/p5/textureWrap.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/material.js#L2082
title: textureWrap
module: 3D
submodule: Material
diff --git a/src/content/reference/en/p5/tint.mdx b/src/content/reference/en/p5/tint.mdx
index 76942642b1..dc5f8b8796 100644
--- a/src/content/reference/en/p5/tint.mdx
+++ b/src/content/reference/en/p5/tint.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/loading_displaying.js#L1192
title: tint
module: Image
submodule: Loading & Displaying
diff --git a/src/content/reference/en/p5/torus.mdx b/src/content/reference/en/p5/torus.mdx
index 4b6fe4d52e..188130ae32 100644
--- a/src/content/reference/en/p5/torus.mdx
+++ b/src/content/reference/en/p5/torus.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/webgl/3d_primitives.js#L2183
title: torus
module: Shape
submodule: 3D Primitives
diff --git a/src/content/reference/en/p5/touchEnded.mdx b/src/content/reference/en/p5/touchEnded.mdx
index 5b234401e2..b7adc6b516 100644
--- a/src/content/reference/en/p5/touchEnded.mdx
+++ b/src/content/reference/en/p5/touchEnded.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/touch.js#L468
title: touchEnded
module: Events
submodule: Touch
diff --git a/src/content/reference/en/p5/touchMoved.mdx b/src/content/reference/en/p5/touchMoved.mdx
index 120aa858c4..79d3e88d6e 100644
--- a/src/content/reference/en/p5/touchMoved.mdx
+++ b/src/content/reference/en/p5/touchMoved.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/touch.js#L295
title: touchMoved
module: Events
submodule: Touch
diff --git a/src/content/reference/en/p5/touchStarted.mdx b/src/content/reference/en/p5/touchStarted.mdx
index bf71a782b4..ae6bff2051 100644
--- a/src/content/reference/en/p5/touchStarted.mdx
+++ b/src/content/reference/en/p5/touchStarted.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/touch.js#L125
title: touchStarted
module: Events
submodule: Touch
diff --git a/src/content/reference/en/p5/touches.mdx b/src/content/reference/en/p5/touches.mdx
index 3e3d5eaa68..e960aa7627 100644
--- a/src/content/reference/en/p5/touches.mdx
+++ b/src/content/reference/en/p5/touches.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/touch.js#L10
title: touches
module: Events
submodule: Touch
diff --git a/src/content/reference/en/p5/translate.mdx b/src/content/reference/en/p5/translate.mdx
index c26ed57c27..0f4e103280 100644
--- a/src/content/reference/en/p5/translate.mdx
+++ b/src/content/reference/en/p5/translate.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/transform.js#L1223
title: translate
module: Transform
submodule: Transform
diff --git a/src/content/reference/en/p5/triangle.mdx b/src/content/reference/en/p5/triangle.mdx
index 02740d2d1b..e0c806afb5 100644
--- a/src/content/reference/en/p5/triangle.mdx
+++ b/src/content/reference/en/p5/triangle.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/2d_primitives.js#L1371
title: triangle
module: Shape
submodule: 2D Primitives
diff --git a/src/content/reference/en/p5/trim.mdx b/src/content/reference/en/p5/trim.mdx
index 005c55b4dd..21cede4239 100644
--- a/src/content/reference/en/p5/trim.mdx
+++ b/src/content/reference/en/p5/trim.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/string_functions.js#L916
title: trim
module: Data
submodule: String Functions
diff --git a/src/content/reference/en/p5/turnAxis.mdx b/src/content/reference/en/p5/turnAxis.mdx
index 62481a4e98..4c091eb575 100644
--- a/src/content/reference/en/p5/turnAxis.mdx
+++ b/src/content/reference/en/p5/turnAxis.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/acceleration.js#L378
title: turnAxis
module: Events
submodule: Acceleration
diff --git a/src/content/reference/en/p5/types/Array.mdx b/src/content/reference/en/p5/types/Array.mdx
index e02c7eb35c..464445a8ba 100644
--- a/src/content/reference/en/p5/types/Array.mdx
+++ b/src/content/reference/en/p5/types/Array.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/reference.js#L1140
title: Array
module: Foundation
submodule: Foundation
diff --git a/src/content/reference/en/p5/types/Boolean.mdx b/src/content/reference/en/p5/types/Boolean.mdx
index aa08fe137d..768c1362a6 100644
--- a/src/content/reference/en/p5/types/Boolean.mdx
+++ b/src/content/reference/en/p5/types/Boolean.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/reference.js#L502
title: Boolean
module: Foundation
submodule: Foundation
diff --git a/src/content/reference/en/p5/types/Number.mdx b/src/content/reference/en/p5/types/Number.mdx
index 182d86b505..ee5eb52d25 100644
--- a/src/content/reference/en/p5/types/Number.mdx
+++ b/src/content/reference/en/p5/types/Number.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/reference.js#L853
title: Number
module: Foundation
submodule: Foundation
diff --git a/src/content/reference/en/p5/types/Object.mdx b/src/content/reference/en/p5/types/Object.mdx
index 2836774396..58f30de51b 100644
--- a/src/content/reference/en/p5/types/Object.mdx
+++ b/src/content/reference/en/p5/types/Object.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/reference.js#L999
title: Object
module: Foundation
submodule: Foundation
diff --git a/src/content/reference/en/p5/types/String.mdx b/src/content/reference/en/p5/types/String.mdx
index 214d163227..62e798aeb7 100644
--- a/src/content/reference/en/p5/types/String.mdx
+++ b/src/content/reference/en/p5/types/String.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/reference.js#L710
title: String
module: Foundation
submodule: Foundation
diff --git a/src/content/reference/en/p5/unchar.mdx b/src/content/reference/en/p5/unchar.mdx
index deaa7a88a6..535ecdbd67 100644
--- a/src/content/reference/en/p5/unchar.mdx
+++ b/src/content/reference/en/p5/unchar.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/conversion.js#L731
title: unchar
module: Data
submodule: Conversion
diff --git a/src/content/reference/en/p5/unhex.mdx b/src/content/reference/en/p5/unhex.mdx
index 113a0ce6e3..d5beec8a7a 100644
--- a/src/content/reference/en/p5/unhex.mdx
+++ b/src/content/reference/en/p5/unhex.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/conversion.js#L956
title: unhex
module: Data
submodule: Conversion
diff --git a/src/content/reference/en/p5/updatePixels.mdx b/src/content/reference/en/p5/updatePixels.mdx
index 97ae7d9d56..b5cd7bfe37 100644
--- a/src/content/reference/en/p5/updatePixels.mdx
+++ b/src/content/reference/en/p5/updatePixels.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/image/pixels.js#L1118
title: updatePixels
module: Image
submodule: Pixels
diff --git a/src/content/reference/en/p5/userStartAudio.mdx b/src/content/reference/en/p5/userStartAudio.mdx
index 73b258e9d6..44410a5389 100644
--- a/src/content/reference/en/p5/userStartAudio.mdx
+++ b/src/content/reference/en/p5/userStartAudio.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/lib/addons/p5.sound.js#L198
title: userStartAudio
module: p5.sound
submodule: p5.sound
diff --git a/src/content/reference/en/p5/vertex.mdx b/src/content/reference/en/p5/vertex.mdx
index a1207b233e..84eaa0956f 100644
--- a/src/content/reference/en/p5/vertex.mdx
+++ b/src/content/reference/en/p5/vertex.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/shape/vertex.js#L1850
title: vertex
module: Shape
submodule: Vertex
diff --git a/src/content/reference/en/p5/webglVersion.mdx b/src/content/reference/en/p5/webglVersion.mdx
index c7a37622bb..548df290f5 100644
--- a/src/content/reference/en/p5/webglVersion.mdx
+++ b/src/content/reference/en/p5/webglVersion.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L508
title: webglVersion
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/while.mdx b/src/content/reference/en/p5/while.mdx
index 4622976804..844d3c5d6f 100644
--- a/src/content/reference/en/p5/while.mdx
+++ b/src/content/reference/en/p5/while.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/reference.js#L1872
title: while
module: Foundation
submodule: Foundation
diff --git a/src/content/reference/en/p5/width.mdx b/src/content/reference/en/p5/width.mdx
index 3d8272c816..05fde3e8a4 100644
--- a/src/content/reference/en/p5/width.mdx
+++ b/src/content/reference/en/p5/width.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L812
title: width
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/winMouseX.mdx b/src/content/reference/en/p5/winMouseX.mdx
index 8a2dba7e72..6560e6cd9f 100644
--- a/src/content/reference/en/p5/winMouseX.mdx
+++ b/src/content/reference/en/p5/winMouseX.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L463
title: winMouseX
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/winMouseY.mdx b/src/content/reference/en/p5/winMouseY.mdx
index f591c2a023..df9e6edbb6 100644
--- a/src/content/reference/en/p5/winMouseY.mdx
+++ b/src/content/reference/en/p5/winMouseY.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/events/mouse.js#L504
title: winMouseY
module: Events
submodule: Mouse
diff --git a/src/content/reference/en/p5/windowHeight.mdx b/src/content/reference/en/p5/windowHeight.mdx
index 7abd1919d0..cb49282b77 100644
--- a/src/content/reference/en/p5/windowHeight.mdx
+++ b/src/content/reference/en/p5/windowHeight.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L680
title: windowHeight
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/windowResized.mdx b/src/content/reference/en/p5/windowResized.mdx
index 4b384cf0aa..1db178202c 100644
--- a/src/content/reference/en/p5/windowResized.mdx
+++ b/src/content/reference/en/p5/windowResized.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L708
title: windowResized
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/windowWidth.mdx b/src/content/reference/en/p5/windowWidth.mdx
index 90ebb636aa..add87f4f0e 100644
--- a/src/content/reference/en/p5/windowWidth.mdx
+++ b/src/content/reference/en/p5/windowWidth.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/core/environment.js#L652
title: windowWidth
module: Environment
submodule: Environment
diff --git a/src/content/reference/en/p5/year.mdx b/src/content/reference/en/p5/year.mdx
index 691789f0c1..b263d73fcb 100644
--- a/src/content/reference/en/p5/year.mdx
+++ b/src/content/reference/en/p5/year.mdx
@@ -1,4 +1,7 @@
---
+# This file was auto-generated. Please do not edit it manually!
+# To make changes, edit the comments in the corresponding source file:
+# https://github.com/processing/p5.js/blob/v1.11.10/src/utilities/time_date.js#L311
title: year
module: IO
submodule: Time & Date