fix: image stretching, code block, and more

This commit is contained in:
Corbin Crutchley
2023-10-09 01:25:11 -07:00
parent 33178a9790
commit 3c81c0f893
3 changed files with 7 additions and 4 deletions

View File

@@ -51,7 +51,10 @@ This is the raw type definition for this object and its properties and methods.
For example: For example:
<h3>getMember(id: string): Member | null</h3> ```
getMember(id: string): Member | null
```
Returns the Member object for the user with the given id, or null if they aren't in the Guild. Returns the Member object for the user with the given id, or null if they aren't in the Guild.
--- ---

View File

@@ -182,13 +182,13 @@ Many phones using iOS and Android allow users to change the font size on their m
<div style="display: flex; justify-content: space-around"> <div style="display: flex; justify-content: space-around">
<figure> <figure>
<img src="./ios_text_size.png" style="height: 300px"/> <img src="./ios_text_size.png"/>
<figcaption> <figcaption>
iOS font size settings screen iOS font size settings screen
</figcaption> </figcaption>
</figure> </figure>
<figure> <figure>
<img src="./android_text_size.png" style="height: 300px"/> <img src="./android_text_size.png"/>
<figcaption> <figcaption>
Android font size settings screen Android font size settings screen
</figcaption> </figcaption>

View File

@@ -39,7 +39,7 @@ Binary, on the other hand, is _base two_. **This means that there are only two s
> For the Latin enthusiasts, binary comes from "binarius" meaning "two together". _Deca_, meaning 10, is where "decimal" comes from. > For the Latin enthusiasts, binary comes from "binarius" meaning "two together". _Deca_, meaning 10, is where "decimal" comes from.
> Additionally, the term "radix" is sometimes used instead of "base" when describing numeral systems, especially in programming. > Additionally, the term "radix" is sometimes used instead of "base" when describing numeral systems, especially in programming.
Instead of using numbers, which can get very confusing very quickly while learning for the first time, let's use **`X`**s and **`O`**s as our two symbols for our first few examples. _An **`X`** represents if a number is present and that we should add it to the final sum; an **`O`** means that the number is not present and that we should not add it_. Instead of using numbers, which can get very confusing very quickly while learning for the first time, let's use **`X`** s and **`O`** s as our two symbols for our first few examples. _An **`X`** represents if a number is present and that we should add it to the final sum; an **`O`** means that the number is not present and that we should not add it_.
Take the following example: Take the following example:
![A "X" on the two column and a "X" on the ones column which add together to make 3](./base_2_3_symbols.svg) ![A "X" on the two column and a "X" on the ones column which add together to make 3](./base_2_3_symbols.svg)