Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix url paths and inline html character bugs on Foundation section of reference page content #522 #525

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/content/reference/en/p5/gt.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module: Foundation
submodule: Foundation
file: src/core/reference.js
description: >-
<p>The greater than operator <a href="/reference/p5/>">></a>
<p>The greater than operator <a href="/reference/p5/gt">></a>

evaluates to true if the left value is greater than

Expand Down
2 changes: 1 addition & 1 deletion src/content/reference/en/p5/gte.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module: Foundation
submodule: Foundation
file: src/core/reference.js
description: >
<p>The greater than or equal to operator <a href="/reference/p5/>=">>=</a>
<p>The greater than or equal to operator <a href="/reference/p5/gte">>=</a>

evaluates to true if the left value is greater than or equal to

Expand Down
2 changes: 1 addition & 1 deletion src/content/reference/en/p5/lt.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module: Foundation
submodule: Foundation
file: src/core/reference.js
description: >
<p>The less than operator <a href="/reference/p5/<"><< a="">
<p>The less than operator <a href="/reference/p5/lt"><</a>

evaluates to true if the left value is less than

Expand Down
2 changes: 1 addition & 1 deletion src/content/reference/en/p5/lte.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module: Foundation
submodule: Foundation
file: src/core/reference.js
description: >
<p>The less than or equal to operator <a href="/reference/p5/<="><=< a="">
<p>The less than or equal to operator <a href="/reference/p5/lte"><=</a>

evaluates to true if the left value is less than or equal to

Expand Down
Loading