Skip to content

Commit 1da0c4a

Browse files
author
Kevan Stannard
committed
Add metadata to frontmatter
1 parent 0c52467 commit 1da0c4a

9 files changed

+45
-9
lines changed

misc_docs/syntax/operators_float_addition.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
---
2-
test: "foo"
2+
id: "float-addition"
3+
keywords: ["plus", "add", "addition", "sum", "float"]
4+
name: "+."
5+
summary: "This is the `floating point addition` operator."
6+
category: "operators"
37
---
48

59
This operator performs *floating point* addition.

misc_docs/syntax/operators_float_division.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
---
2-
test: "foo"
2+
id: "float-division"
3+
keywords: ["divide", "division", "float"]
4+
name: "/."
5+
summary: "This is the `floating point division` operator."
6+
category: "operators"
37
---
48

59
This operator performs *floating point* division.

misc_docs/syntax/operators_float_multiplication.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
---
2-
test: "foo"
2+
id: "float-multiplication"
3+
keywords: ["multiply", "multiplication", "float"]
4+
name: "*."
5+
summary: "This is the `floating point multiplication` operator."
6+
category: "operators"
37
---
48

59
This operator performs *floating point* multiplication.

misc_docs/syntax/operators_float_subtraction.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
---
2-
test: "foo"
2+
id: "float-subtraction"
3+
keywords: ["subtract", "minus", "subtraction", "float"]
4+
name: "-."
5+
summary: "This is the `floating point subtraction` operator."
6+
category: "operators"
37
---
48

59
This operator performs *floating point* subtraction.

misc_docs/syntax/operators_integer_addition.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
---
2-
test: "foo"
2+
id: "integer-addition"
3+
keywords: ["plus", "add", "addition", "sum", "int", "integer"]
4+
name: "+"
5+
summary: "This is the `integer addition` operator."
6+
category: "operators"
37
---
48

59
This operator performs *integers* addition.

misc_docs/syntax/operators_integer_division.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
---
2-
test: "foo"
2+
id: "integer-division"
3+
keywords: ["divide", "division", "int", "integer"]
4+
name: "/"
5+
summary: "This is the `integer division` operator."
6+
category: "operators"
37
---
48

59
This operator performs *integer* division, with the result truncated to an integer value.

misc_docs/syntax/operators_integer_multiplication.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
---
2-
test: "foo"
2+
id: "integer-multiplication"
3+
keywords: ["multiply", "multiplication", "int", "integer"]
4+
name: "*"
5+
summary: "This is the `integer multiplication` operator."
6+
category: "operators"
37
---
48

59
This operator performs *integer* multiplication.

misc_docs/syntax/operators_integer_subtraction.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
---
2-
test: "foo"
2+
id: "integer-subtraction"
3+
keywords: ["subtract", "minus", "subtraction", "int", "integer"]
4+
name: "-"
5+
summary: "This is the `integer subtraction` operator."
6+
category: "operators"
37
---
48

59
This operator performs *integer* subtraction.

misc_docs/syntax/operators_string_concatenation.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
---
2-
test: "foo"
2+
id: "string-concatenation"
3+
keywords: ["concat", "concatenation", "add", "string"]
4+
name: "++"
5+
summary: "This is the `string concatenation` operator."
6+
category: "operators"
37
---
48

59
This operator concatenates two *strings* together.

0 commit comments

Comments
 (0)