From ae81c6b4cd122c7d8724119a4a00dfc068b4214c Mon Sep 17 00:00:00 2001 From: John Lu Date: Fri, 2 Aug 2024 12:04:20 -0400 Subject: [PATCH] converted to string --- src/content/config.ts | 2 +- .../comp2804-a-basic-property-of-independent-events.md | 2 +- .../tags/comp2804/comp2804-a-recursively-defined-set.md | 2 +- .../tags/comp2804/comp2804-basic-rules-of-probability.md | 2 +- src/content/tags/comp2804/comp2804-combinatorial-proof.md | 2 +- .../tags/comp2804/comp2804-conditional-probability.md | 2 +- .../tags/comp2804/comp2804-counting-00-free-bitstrings.md | 2 +- .../comp2804/comp2804-counting-bitstrings-of-length-n.md | 2 +- src/content/tags/comp2804/comp2804-counting-functions.md | 2 +- .../comp2804-counting-solutions-of-linear-equations.md | 2 +- src/content/tags/comp2804/comp2804-de-morgan's-law.md | 1 + .../comp2804-determining-the-expected-value-(6.6.1).md | 2 +- .../comp2804-determining-the-expected-value-(6.7.1).md | 2 +- src/content/tags/comp2804/comp2804-discrete-probability.md | 2 +- src/content/tags/comp2804/comp2804-euclid's-algorithm.md | 2 +- src/content/tags/comp2804/comp2804-expected-values.md | 2 +- src/content/tags/comp2804/comp2804-fibonacci-numbers.md | 2 +- src/content/tags/comp2804/comp2804-final.md | 1 + src/content/tags/comp2804/comp2804-independent-events.md | 2 +- .../tags/comp2804/comp2804-independent-random-variables.md | 2 +- .../tags/comp2804/comp2804-indicator-random-variables.md | 2 +- .../tags/comp2804/comp2804-linearity-of-expectations.md | 2 +- src/content/tags/comp2804/comp2804-midterm.md | 1 + .../tags/comp2804/comp2804-newton's-binomial-theorem.md | 2 +- .../comp2804-permutations-and-binomial-coefficients-(3.6).md | 2 +- ...omp2804-permutations-and-binomial-coefficients-(3.6.1).md | 2 +- ...omp2804-permutations-and-binomial-coefficients-(3.6.2).md | 2 +- .../tags/comp2804/comp2804-placing-books-on-shelves.md | 2 +- src/content/tags/comp2804/comp2804-question.md | 2 +- .../comp2804/comp2804-random-variables-and-expectation.md | 2 +- src/content/tags/comp2804/comp2804-random-variables.md | 2 +- src/content/tags/comp2804/comp2804-recursive-functions.md | 2 +- .../comp2804/comp2804-reordering-the-letters-of-a-word.md | 2 +- src/content/tags/comp2804/comp2804-rolling-two-dice.md | 2 +- src/content/tags/comp2804/comp2804-the-bijection-rule.md | 2 +- src/content/tags/comp2804/comp2804-the-birthday-paradox.md | 2 +- src/content/tags/comp2804/comp2804-the-complement-rule.md | 2 +- .../tags/comp2804/comp2804-the-law-of-total-probability.md | 2 +- .../tags/comp2804/comp2804-the-pigeonhole-principle.md | 2 +- .../comp2804-the-principle-of-inclusion-and-exclusion.md | 2 +- .../comp2804-the-probability-of-getting-a-full-house.md | 2 +- src/content/tags/comp2804/comp2804-the-product-rule.md | 2 +- src/content/tags/comp2804/comp2804-the-sum-rule.md | 2 +- .../tags/comp2804/comp2804-uniform-probability-spaces.md | 2 +- src/content/tags/comp2804/comp2804.md | 1 + src/pages/courses.astro | 5 ++++- 46 files changed, 49 insertions(+), 42 deletions(-) diff --git a/src/content/config.ts b/src/content/config.ts index 91017d0a..11498cd5 100644 --- a/src/content/config.ts +++ b/src/content/config.ts @@ -30,6 +30,7 @@ const tagCollection = defineCollection({ course: z.string(), tag: z.string(), title: z.string(), + section: z.nullable(z.string()), }), }); @@ -37,5 +38,4 @@ export const collections = { questions: questionCollection, evaluations: evaluationCollection, tags: tagCollection, - section: z.nullable(z.string()), }; diff --git a/src/content/tags/comp2804/comp2804-a-basic-property-of-independent-events.md b/src/content/tags/comp2804/comp2804-a-basic-property-of-independent-events.md index 0b9bdd37..3f263cce 100644 --- a/src/content/tags/comp2804/comp2804-a-basic-property-of-independent-events.md +++ b/src/content/tags/comp2804/comp2804-a-basic-property-of-independent-events.md @@ -2,5 +2,5 @@ course: comp2804 title: A Basic Property of Independent Events tag: comp2804-a-basic-property-of-independent-events -section: 5.11.2 +section: "5.11.2" --- diff --git a/src/content/tags/comp2804/comp2804-a-recursively-defined-set.md b/src/content/tags/comp2804/comp2804-a-recursively-defined-set.md index ecbad358..9364c7a8 100644 --- a/src/content/tags/comp2804/comp2804-a-recursively-defined-set.md +++ b/src/content/tags/comp2804/comp2804-a-recursively-defined-set.md @@ -2,5 +2,5 @@ course: comp2804 title: A Recursively Defined Set tag: comp2804-a-recursively-defined-set -section: 4.3 +section: "4.3" --- diff --git a/src/content/tags/comp2804/comp2804-basic-rules-of-probability.md b/src/content/tags/comp2804/comp2804-basic-rules-of-probability.md index 8bc9b6e1..6bd6456f 100644 --- a/src/content/tags/comp2804/comp2804-basic-rules-of-probability.md +++ b/src/content/tags/comp2804/comp2804-basic-rules-of-probability.md @@ -2,5 +2,5 @@ course: comp2804 title: Basic Rules of Probability tag: comp2804-basic-rules-of-probability -section: 5.3 +section: "5.3" --- diff --git a/src/content/tags/comp2804/comp2804-combinatorial-proof.md b/src/content/tags/comp2804/comp2804-combinatorial-proof.md index 42774d30..a027d7c8 100644 --- a/src/content/tags/comp2804/comp2804-combinatorial-proof.md +++ b/src/content/tags/comp2804/comp2804-combinatorial-proof.md @@ -2,5 +2,5 @@ course: comp2804 title: Combinatorial Proof tag: comp2804-combinatorial-proof -section: 3.7 +section: "3.7" --- diff --git a/src/content/tags/comp2804/comp2804-conditional-probability.md b/src/content/tags/comp2804/comp2804-conditional-probability.md index 65bc0309..9b49b70e 100644 --- a/src/content/tags/comp2804/comp2804-conditional-probability.md +++ b/src/content/tags/comp2804/comp2804-conditional-probability.md @@ -2,5 +2,5 @@ course: comp2804 title: Conditional Probability tag: comp2804-conditional-probability -section: 5.8 +section: "5.8" --- diff --git a/src/content/tags/comp2804/comp2804-counting-00-free-bitstrings.md b/src/content/tags/comp2804/comp2804-counting-00-free-bitstrings.md index 2fc61e65..477913d0 100644 --- a/src/content/tags/comp2804/comp2804-counting-00-free-bitstrings.md +++ b/src/content/tags/comp2804/comp2804-counting-00-free-bitstrings.md @@ -2,5 +2,5 @@ course: comp2804 title: Counting 00-Free Bitstrings tag: comp2804-counting-00-free-bitstrings -section: 4.2.1 +section: "4.2.1" --- diff --git a/src/content/tags/comp2804/comp2804-counting-bitstrings-of-length-n.md b/src/content/tags/comp2804/comp2804-counting-bitstrings-of-length-n.md index fd2a4485..3f1e553d 100644 --- a/src/content/tags/comp2804/comp2804-counting-bitstrings-of-length-n.md +++ b/src/content/tags/comp2804/comp2804-counting-bitstrings-of-length-n.md @@ -2,5 +2,5 @@ course: comp2804 title: Counting Bitstrings of Length n tag: comp2804-counting-bitstrings-of-length-n -section: 3.1.1 +section: "3.1.1" --- diff --git a/src/content/tags/comp2804/comp2804-counting-functions.md b/src/content/tags/comp2804/comp2804-counting-functions.md index 3ca6a6ff..f39b2b1d 100644 --- a/src/content/tags/comp2804/comp2804-counting-functions.md +++ b/src/content/tags/comp2804/comp2804-counting-functions.md @@ -2,5 +2,5 @@ course: comp2804 title: Counting Functions tag: comp2804-counting-functions -section: 3.1.2 +section: "3.1.2" --- diff --git a/src/content/tags/comp2804/comp2804-counting-solutions-of-linear-equations.md b/src/content/tags/comp2804/comp2804-counting-solutions-of-linear-equations.md index 6c088252..f344d0ff 100644 --- a/src/content/tags/comp2804/comp2804-counting-solutions-of-linear-equations.md +++ b/src/content/tags/comp2804/comp2804-counting-solutions-of-linear-equations.md @@ -2,5 +2,5 @@ course: comp2804 title: Counting Solutions of Linear Equations tag: comp2804-counting-solutions-of-linear-equations -section: 3.9.2 +section: "3.9.2" --- diff --git a/src/content/tags/comp2804/comp2804-de-morgan's-law.md b/src/content/tags/comp2804/comp2804-de-morgan's-law.md index b4fb4112..5500a162 100644 --- a/src/content/tags/comp2804/comp2804-de-morgan's-law.md +++ b/src/content/tags/comp2804/comp2804-de-morgan's-law.md @@ -2,4 +2,5 @@ course: comp2804 title: De Morgan's Law tag: comp2804-de-morgan's-law +section: --- diff --git a/src/content/tags/comp2804/comp2804-determining-the-expected-value-(6.6.1).md b/src/content/tags/comp2804/comp2804-determining-the-expected-value-(6.6.1).md index 1e33631b..768f9a2c 100644 --- a/src/content/tags/comp2804/comp2804-determining-the-expected-value-(6.6.1).md +++ b/src/content/tags/comp2804/comp2804-determining-the-expected-value-(6.6.1).md @@ -2,5 +2,5 @@ course: comp2804 title: Determining the Expected Value tag: comp2804-determining-the-expected-value -section: 6.6.1 +section: "6.6.1" --- diff --git a/src/content/tags/comp2804/comp2804-determining-the-expected-value-(6.7.1).md b/src/content/tags/comp2804/comp2804-determining-the-expected-value-(6.7.1).md index 9296c2ca..ab1b1249 100644 --- a/src/content/tags/comp2804/comp2804-determining-the-expected-value-(6.7.1).md +++ b/src/content/tags/comp2804/comp2804-determining-the-expected-value-(6.7.1).md @@ -2,5 +2,5 @@ course: comp2804 title: Determining the Expected Value tag: comp2804-determining-the-expected-value -section: 6.7.1 +section: "6.7.1" --- diff --git a/src/content/tags/comp2804/comp2804-discrete-probability.md b/src/content/tags/comp2804/comp2804-discrete-probability.md index 048af203..a4df83fe 100644 --- a/src/content/tags/comp2804/comp2804-discrete-probability.md +++ b/src/content/tags/comp2804/comp2804-discrete-probability.md @@ -2,5 +2,5 @@ course: comp2804 title: Discrete Probability tag: comp2804-discrete-probability -section: 5 +section: "5" --- diff --git a/src/content/tags/comp2804/comp2804-euclid's-algorithm.md b/src/content/tags/comp2804/comp2804-euclid's-algorithm.md index e82e63d2..71e026f6 100644 --- a/src/content/tags/comp2804/comp2804-euclid's-algorithm.md +++ b/src/content/tags/comp2804/comp2804-euclid's-algorithm.md @@ -2,5 +2,5 @@ course: comp2804 title: Euclid's Algorithm tag: comp2804-euclid's-algorithm -section: 4.5 +section: "4.5" --- diff --git a/src/content/tags/comp2804/comp2804-expected-values.md b/src/content/tags/comp2804/comp2804-expected-values.md index 78006c02..b64a3261 100644 --- a/src/content/tags/comp2804/comp2804-expected-values.md +++ b/src/content/tags/comp2804/comp2804-expected-values.md @@ -2,5 +2,5 @@ course: comp2804 title: Expected Values tag: comp2804-expected-values -section: 6.4 +section: "6.4" --- diff --git a/src/content/tags/comp2804/comp2804-fibonacci-numbers.md b/src/content/tags/comp2804/comp2804-fibonacci-numbers.md index 44a451f7..663c2d91 100644 --- a/src/content/tags/comp2804/comp2804-fibonacci-numbers.md +++ b/src/content/tags/comp2804/comp2804-fibonacci-numbers.md @@ -2,5 +2,5 @@ course: comp2804 title: Fibonacci Numbers tag: comp2804-fibonacci-numbers -section: 4.2 +section: "4.2" --- diff --git a/src/content/tags/comp2804/comp2804-final.md b/src/content/tags/comp2804/comp2804-final.md index b5160727..ed8df460 100644 --- a/src/content/tags/comp2804/comp2804-final.md +++ b/src/content/tags/comp2804/comp2804-final.md @@ -2,4 +2,5 @@ course: comp2804 title: COMP 2804 Final Exam tag: comp2804-final +section: --- diff --git a/src/content/tags/comp2804/comp2804-independent-events.md b/src/content/tags/comp2804/comp2804-independent-events.md index 3677e3a4..88a76abe 100644 --- a/src/content/tags/comp2804/comp2804-independent-events.md +++ b/src/content/tags/comp2804/comp2804-independent-events.md @@ -2,5 +2,5 @@ course: comp2804 title: Independent Events tag: comp2804-independent-events -section: 5.11 +section: "5.11" --- diff --git a/src/content/tags/comp2804/comp2804-independent-random-variables.md b/src/content/tags/comp2804/comp2804-independent-random-variables.md index de18f44b..dabaef48 100644 --- a/src/content/tags/comp2804/comp2804-independent-random-variables.md +++ b/src/content/tags/comp2804/comp2804-independent-random-variables.md @@ -2,5 +2,5 @@ course: comp2804 title: Independent Random Variables tag: comp2804-independent-random-variables -section: 6.2 +section: "6.2" --- diff --git a/src/content/tags/comp2804/comp2804-indicator-random-variables.md b/src/content/tags/comp2804/comp2804-indicator-random-variables.md index 278808aa..148155fb 100644 --- a/src/content/tags/comp2804/comp2804-indicator-random-variables.md +++ b/src/content/tags/comp2804/comp2804-indicator-random-variables.md @@ -2,5 +2,5 @@ course: comp2804 title: Indicator Random Variables tag: comp2804-indicator-random-variables -section: 6.8 +section: "6.8" --- diff --git a/src/content/tags/comp2804/comp2804-linearity-of-expectations.md b/src/content/tags/comp2804/comp2804-linearity-of-expectations.md index cdab90fd..addef8d2 100644 --- a/src/content/tags/comp2804/comp2804-linearity-of-expectations.md +++ b/src/content/tags/comp2804/comp2804-linearity-of-expectations.md @@ -2,5 +2,5 @@ course: comp2804 title: Linearity of Expectations tag: comp2804-linearity-of-expectations -section: 6.5 +section: "6.5" --- diff --git a/src/content/tags/comp2804/comp2804-midterm.md b/src/content/tags/comp2804/comp2804-midterm.md index 7e7e71af..de818423 100644 --- a/src/content/tags/comp2804/comp2804-midterm.md +++ b/src/content/tags/comp2804/comp2804-midterm.md @@ -2,4 +2,5 @@ course: comp2804 title: COMP 2804 Midterm tag: comp2804-midterm +section: --- diff --git a/src/content/tags/comp2804/comp2804-newton's-binomial-theorem.md b/src/content/tags/comp2804/comp2804-newton's-binomial-theorem.md index 604f75dc..bc6291a0 100644 --- a/src/content/tags/comp2804/comp2804-newton's-binomial-theorem.md +++ b/src/content/tags/comp2804/comp2804-newton's-binomial-theorem.md @@ -2,5 +2,5 @@ course: comp2804 title: Newton's Binomial Theorem tag: comp2804-newton's-binomial-theorem -section: 3.6.2 +section: "3.6.2" --- diff --git a/src/content/tags/comp2804/comp2804-permutations-and-binomial-coefficients-(3.6).md b/src/content/tags/comp2804/comp2804-permutations-and-binomial-coefficients-(3.6).md index 50ba0e9c..095ce326 100644 --- a/src/content/tags/comp2804/comp2804-permutations-and-binomial-coefficients-(3.6).md +++ b/src/content/tags/comp2804/comp2804-permutations-and-binomial-coefficients-(3.6).md @@ -2,5 +2,5 @@ course: comp2804 title: Permutations and Binomial Coefficients tag: comp2804-permutations-and-binomial-coefficients -section: 3.6 +section: "3.6" --- diff --git a/src/content/tags/comp2804/comp2804-permutations-and-binomial-coefficients-(3.6.1).md b/src/content/tags/comp2804/comp2804-permutations-and-binomial-coefficients-(3.6.1).md index 9c33f4d2..0fbc4cfb 100644 --- a/src/content/tags/comp2804/comp2804-permutations-and-binomial-coefficients-(3.6.1).md +++ b/src/content/tags/comp2804/comp2804-permutations-and-binomial-coefficients-(3.6.1).md @@ -2,5 +2,5 @@ course: comp2804 title: Permutations and Binomial Coefficients tag: comp2804-permutations-and-binomial-coefficients -section: 3.6.1 +section: "3.6.1" --- diff --git a/src/content/tags/comp2804/comp2804-permutations-and-binomial-coefficients-(3.6.2).md b/src/content/tags/comp2804/comp2804-permutations-and-binomial-coefficients-(3.6.2).md index 763a86b7..e15520d1 100644 --- a/src/content/tags/comp2804/comp2804-permutations-and-binomial-coefficients-(3.6.2).md +++ b/src/content/tags/comp2804/comp2804-permutations-and-binomial-coefficients-(3.6.2).md @@ -2,5 +2,5 @@ course: comp2804 title: Permutations and Binomial Coefficients tag: comp2804-permutations-and-binomial-coefficients -section: 3.6.2 +section: "3.6.2" --- diff --git a/src/content/tags/comp2804/comp2804-placing-books-on-shelves.md b/src/content/tags/comp2804/comp2804-placing-books-on-shelves.md index 7090195f..9af0a205 100644 --- a/src/content/tags/comp2804/comp2804-placing-books-on-shelves.md +++ b/src/content/tags/comp2804/comp2804-placing-books-on-shelves.md @@ -2,5 +2,5 @@ course: comp2804 title: Placing Books on Shelves tag: comp2804-placing-books-on-shelves -section: 3.1.3 +section: "3.1.3" --- diff --git a/src/content/tags/comp2804/comp2804-question.md b/src/content/tags/comp2804/comp2804-question.md index 10391e67..f415bc3c 100644 --- a/src/content/tags/comp2804/comp2804-question.md +++ b/src/content/tags/comp2804/comp2804-question.md @@ -2,5 +2,5 @@ course: comp2804 title: Question tag: comp2804-question -section: 5.73 +section: "5.73" --- diff --git a/src/content/tags/comp2804/comp2804-random-variables-and-expectation.md b/src/content/tags/comp2804/comp2804-random-variables-and-expectation.md index b43c9634..ede66b62 100644 --- a/src/content/tags/comp2804/comp2804-random-variables-and-expectation.md +++ b/src/content/tags/comp2804/comp2804-random-variables-and-expectation.md @@ -2,5 +2,5 @@ course: comp2804 title: Random Variables and Expectation tag: comp2804-random-variables-and-expectation -section: 6 +section: "6" --- diff --git a/src/content/tags/comp2804/comp2804-random-variables.md b/src/content/tags/comp2804/comp2804-random-variables.md index b833fd26..87d0d991 100644 --- a/src/content/tags/comp2804/comp2804-random-variables.md +++ b/src/content/tags/comp2804/comp2804-random-variables.md @@ -2,5 +2,5 @@ course: comp2804 title: Random Variables tag: comp2804-random-variables -section: 6.1 +section: "6.1" --- diff --git a/src/content/tags/comp2804/comp2804-recursive-functions.md b/src/content/tags/comp2804/comp2804-recursive-functions.md index 850354f5..f3eaf0c2 100644 --- a/src/content/tags/comp2804/comp2804-recursive-functions.md +++ b/src/content/tags/comp2804/comp2804-recursive-functions.md @@ -2,5 +2,5 @@ course: comp2804 title: Recursive Functions tag: comp2804-recursive-functions -section: 4.1 +section: "4.1" --- diff --git a/src/content/tags/comp2804/comp2804-reordering-the-letters-of-a-word.md b/src/content/tags/comp2804/comp2804-reordering-the-letters-of-a-word.md index 8517f47b..4e1febf8 100644 --- a/src/content/tags/comp2804/comp2804-reordering-the-letters-of-a-word.md +++ b/src/content/tags/comp2804/comp2804-reordering-the-letters-of-a-word.md @@ -2,5 +2,5 @@ course: comp2804 title: Reordering the Letters of a Word tag: comp2804-reordering-the-letters-of-a-word -section: 3.9.1 +section: "3.9.1" --- diff --git a/src/content/tags/comp2804/comp2804-rolling-two-dice.md b/src/content/tags/comp2804/comp2804-rolling-two-dice.md index f847f601..69663d82 100644 --- a/src/content/tags/comp2804/comp2804-rolling-two-dice.md +++ b/src/content/tags/comp2804/comp2804-rolling-two-dice.md @@ -2,5 +2,5 @@ course: comp2804 title: Rolling Two Dice tag: comp2804-rolling-two-dice -section: 5.11.1 +section: "5.11.1" --- diff --git a/src/content/tags/comp2804/comp2804-the-bijection-rule.md b/src/content/tags/comp2804/comp2804-the-bijection-rule.md index 401e2717..527bf1bb 100644 --- a/src/content/tags/comp2804/comp2804-the-bijection-rule.md +++ b/src/content/tags/comp2804/comp2804-the-bijection-rule.md @@ -2,5 +2,5 @@ course: comp2804 title: The Bijection Rule tag: comp2804-the-bijection-rule -section: 3.2.1 +section: "3.2.1" --- diff --git a/src/content/tags/comp2804/comp2804-the-birthday-paradox.md b/src/content/tags/comp2804/comp2804-the-birthday-paradox.md index 3b4662d5..c4993e13 100644 --- a/src/content/tags/comp2804/comp2804-the-birthday-paradox.md +++ b/src/content/tags/comp2804/comp2804-the-birthday-paradox.md @@ -2,5 +2,5 @@ course: comp2804 title: The Birthday Paradox tag: comp2804-the-birthday-paradox -section: 5.5 +section: "5.5" --- diff --git a/src/content/tags/comp2804/comp2804-the-complement-rule.md b/src/content/tags/comp2804/comp2804-the-complement-rule.md index 8d1072c0..58250642 100644 --- a/src/content/tags/comp2804/comp2804-the-complement-rule.md +++ b/src/content/tags/comp2804/comp2804-the-complement-rule.md @@ -2,5 +2,5 @@ course: comp2804 title: The Complement Rule tag: comp2804-the-complement-rule -section: 3.3 +section: "3.3" --- diff --git a/src/content/tags/comp2804/comp2804-the-law-of-total-probability.md b/src/content/tags/comp2804/comp2804-the-law-of-total-probability.md index ba5b6771..bbe5432c 100644 --- a/src/content/tags/comp2804/comp2804-the-law-of-total-probability.md +++ b/src/content/tags/comp2804/comp2804-the-law-of-total-probability.md @@ -2,5 +2,5 @@ course: comp2804 title: The Law of Total Probability tag: comp2804-the-law-of-total-probability -section: 5.9 +section: "5.9" --- diff --git a/src/content/tags/comp2804/comp2804-the-pigeonhole-principle.md b/src/content/tags/comp2804/comp2804-the-pigeonhole-principle.md index 9122c77b..efa50a5e 100644 --- a/src/content/tags/comp2804/comp2804-the-pigeonhole-principle.md +++ b/src/content/tags/comp2804/comp2804-the-pigeonhole-principle.md @@ -2,5 +2,5 @@ course: comp2804 title: The Pigeonhole Principle tag: comp2804-the-pigeonhole-principle -section: 3.10 +section: "3.10" --- diff --git a/src/content/tags/comp2804/comp2804-the-principle-of-inclusion-and-exclusion.md b/src/content/tags/comp2804/comp2804-the-principle-of-inclusion-and-exclusion.md index 021436ce..8a218cbe 100644 --- a/src/content/tags/comp2804/comp2804-the-principle-of-inclusion-and-exclusion.md +++ b/src/content/tags/comp2804/comp2804-the-principle-of-inclusion-and-exclusion.md @@ -2,5 +2,5 @@ course: comp2804 title: The Principle of Inclusion and Exclusion tag: comp2804-the-principle-of-inclusion-and-exclusion -section: 3.5 +section: "3.5" --- diff --git a/src/content/tags/comp2804/comp2804-the-probability-of-getting-a-full-house.md b/src/content/tags/comp2804/comp2804-the-probability-of-getting-a-full-house.md index 37e35716..3b65ab4f 100644 --- a/src/content/tags/comp2804/comp2804-the-probability-of-getting-a-full-house.md +++ b/src/content/tags/comp2804/comp2804-the-probability-of-getting-a-full-house.md @@ -2,5 +2,5 @@ course: comp2804 title: The Probability of Getting a Full House tag: comp2804-the-probability-of-getting-a-full-house -section: 5.4.1 +section: "5.4.1" --- diff --git a/src/content/tags/comp2804/comp2804-the-product-rule.md b/src/content/tags/comp2804/comp2804-the-product-rule.md index 969298cd..cc69e925 100644 --- a/src/content/tags/comp2804/comp2804-the-product-rule.md +++ b/src/content/tags/comp2804/comp2804-the-product-rule.md @@ -2,5 +2,5 @@ course: comp2804 title: The Product Rule tag: comp2804-the-product-rule -section: 3.1 +section: "3.1" --- diff --git a/src/content/tags/comp2804/comp2804-the-sum-rule.md b/src/content/tags/comp2804/comp2804-the-sum-rule.md index f74d354a..a508f0e3 100644 --- a/src/content/tags/comp2804/comp2804-the-sum-rule.md +++ b/src/content/tags/comp2804/comp2804-the-sum-rule.md @@ -2,5 +2,5 @@ course: comp2804 title: The Sum Rule tag: comp2804-the-sum-rule -section: 3.4 +section: "3.4" --- diff --git a/src/content/tags/comp2804/comp2804-uniform-probability-spaces.md b/src/content/tags/comp2804/comp2804-uniform-probability-spaces.md index 30bcc6be..72b74f88 100644 --- a/src/content/tags/comp2804/comp2804-uniform-probability-spaces.md +++ b/src/content/tags/comp2804/comp2804-uniform-probability-spaces.md @@ -2,5 +2,5 @@ course: comp2804 title: Uniform Probability Spaces tag: comp2804-uniform-probability-spaces -section: 4.4 +section: "4.4" --- diff --git a/src/content/tags/comp2804/comp2804.md b/src/content/tags/comp2804/comp2804.md index 98548468..3b7e6add 100644 --- a/src/content/tags/comp2804/comp2804.md +++ b/src/content/tags/comp2804/comp2804.md @@ -2,4 +2,5 @@ course: comp2804 title: "COMP 2804: Discrete Structures II" tag: comp2804 +section: --- diff --git a/src/pages/courses.astro b/src/pages/courses.astro index 0aa9f45b..10d8d22d 100644 --- a/src/pages/courses.astro +++ b/src/pages/courses.astro @@ -54,7 +54,10 @@ const comp2804Tags = tags.filter((tag) => tag.data.course === "comp2804"); comp2804Tags.map((tag) => (
- +
))