mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-10 04:22:06 +00:00
fix: image stretching, code block, and more
This commit is contained in:
@@ -51,7 +51,10 @@ This is the raw type definition for this object and its properties and methods.
|
||||
|
||||
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.
|
||||
|
||||
---
|
||||
|
||||
@@ -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">
|
||||
<figure>
|
||||
<img src="./ios_text_size.png" style="height: 300px"/>
|
||||
<img src="./ios_text_size.png"/>
|
||||
<figcaption>
|
||||
iOS font size settings screen
|
||||
</figcaption>
|
||||
</figure>
|
||||
<figure>
|
||||
<img src="./android_text_size.png" style="height: 300px"/>
|
||||
<img src="./android_text_size.png"/>
|
||||
<figcaption>
|
||||
Android font size settings screen
|
||||
</figcaption>
|
||||
|
||||
@@ -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.
|
||||
> 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:
|
||||
|
||||

|
||||
|
||||
Reference in New Issue
Block a user