Skip to content

Commit

Permalink
Add metadata to frontmatter
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevan Stannard committed Jan 4, 2021
1 parent 0c52467 commit 1da0c4a
Show file tree
Hide file tree
Showing 9 changed files with 45 additions and 9 deletions.
6 changes: 5 additions & 1 deletion misc_docs/syntax/operators_float_addition.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
---
test: "foo"
id: "float-addition"
keywords: ["plus", "add", "addition", "sum", "float"]
name: "+."
summary: "This is the `floating point addition` operator."
category: "operators"
---

This operator performs *floating point* addition.
Expand Down
6 changes: 5 additions & 1 deletion misc_docs/syntax/operators_float_division.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
---
test: "foo"
id: "float-division"
keywords: ["divide", "division", "float"]
name: "/."
summary: "This is the `floating point division` operator."
category: "operators"
---

This operator performs *floating point* division.
Expand Down
6 changes: 5 additions & 1 deletion misc_docs/syntax/operators_float_multiplication.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
---
test: "foo"
id: "float-multiplication"
keywords: ["multiply", "multiplication", "float"]
name: "*."
summary: "This is the `floating point multiplication` operator."
category: "operators"
---

This operator performs *floating point* multiplication.
Expand Down
6 changes: 5 additions & 1 deletion misc_docs/syntax/operators_float_subtraction.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
---
test: "foo"
id: "float-subtraction"
keywords: ["subtract", "minus", "subtraction", "float"]
name: "-."
summary: "This is the `floating point subtraction` operator."
category: "operators"
---

This operator performs *floating point* subtraction.
Expand Down
6 changes: 5 additions & 1 deletion misc_docs/syntax/operators_integer_addition.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
---
test: "foo"
id: "integer-addition"
keywords: ["plus", "add", "addition", "sum", "int", "integer"]
name: "+"
summary: "This is the `integer addition` operator."
category: "operators"
---

This operator performs *integers* addition.
Expand Down
6 changes: 5 additions & 1 deletion misc_docs/syntax/operators_integer_division.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
---
test: "foo"
id: "integer-division"
keywords: ["divide", "division", "int", "integer"]
name: "/"
summary: "This is the `integer division` operator."
category: "operators"
---

This operator performs *integer* division, with the result truncated to an integer value.
Expand Down
6 changes: 5 additions & 1 deletion misc_docs/syntax/operators_integer_multiplication.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
---
test: "foo"
id: "integer-multiplication"
keywords: ["multiply", "multiplication", "int", "integer"]
name: "*"
summary: "This is the `integer multiplication` operator."
category: "operators"
---

This operator performs *integer* multiplication.
Expand Down
6 changes: 5 additions & 1 deletion misc_docs/syntax/operators_integer_subtraction.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
---
test: "foo"
id: "integer-subtraction"
keywords: ["subtract", "minus", "subtraction", "int", "integer"]
name: "-"
summary: "This is the `integer subtraction` operator."
category: "operators"
---

This operator performs *integer* subtraction.
Expand Down
6 changes: 5 additions & 1 deletion misc_docs/syntax/operators_string_concatenation.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
---
test: "foo"
id: "string-concatenation"
keywords: ["concat", "concatenation", "add", "string"]
name: "++"
summary: "This is the `string concatenation` operator."
category: "operators"
---

This operator concatenates two *strings* together.
Expand Down

0 comments on commit 1da0c4a

Please sign in to comment.