Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style(root): fix indent for editor config wd-681 #682

Merged
merged 1 commit into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions apps/whatislove-dev/src/articles/block-or-inline/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,13 @@ HTML Element content types:
- [Interactive content](https://html.spec.whatwg.org/multipage/dom.html#interactive-content-2) — what the user is interacting with.

<figure>
<img src="images/html-element-content-types.png" alt="Content types in HTML and how they intersect with each other." />
<figcaption>HTML Element content types</figcaption>
<img src="images/html-element-content-types.png" alt="Content types in HTML and how they intersect with each other." />
<figcaption>HTML Element content types</figcaption>
</figure>

<figure>
<img src="images/html-element-content-types-with-tags.png" alt="Content types in HTML and how they intersect with each other with some examples of tags." />
<figcaption>HTML Element content types</figcaption>
<img src="images/html-element-content-types-with-tags.png" alt="Content types in HTML and how they intersect with each other with some examples of tags." />
<figcaption>HTML Element content types</figcaption>
</figure>

_When you try to nest one tag in another incorrectly, browser starts fixing errors **at its discretion without asking**._
Expand All @@ -138,7 +138,7 @@ Open the [documentation](https://html.spec.whatwg.org/multipage/semantics.html#s
```

<details>
<summary>Spoiler</summary>
<summary>Spoiler</summary>

**Yes, you can!**

Expand Down Expand Up @@ -168,7 +168,7 @@ Open the [documentation](https://html.spec.whatwg.org/multipage/semantics.html#s
<!-- prettier-ignore -->
```html
<p>
<div>?</div>
<div>?</div>
</p>
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,13 @@ Some readers might suggest that similar behavior could be achieved by continuing
Undoubtedly, we are pleased with the fact that we now manage our delivery processes in GitHub, and the statistics we collect from people participating in the Academy are a testament to its effectiveness.

<figure>
<img src="images/statistics-2022.png" alt="Statistics before GitHub became our main tool." />
<figcaption>Before GitHub became our main tool.</figcaption>
<img src="images/statistics-2022.png" alt="Statistics before GitHub became our main tool." />
<figcaption>Before GitHub became our main tool.</figcaption>
</figure>

<figure>
<img src="images/statistics-2023.png" alt="Statistics after GitHub became our main tool." />
<figcaption>After GitHub became our main tool.</figcaption>
<img src="images/statistics-2023.png" alt="Statistics after GitHub became our main tool." />
<figcaption>After GitHub became our main tool.</figcaption>
</figure>

While we have not completely eliminated Google Docs/Sheets (although we now use [Notion](https://www.notion.so/) more for this purpose. Yes-yes, one more tool…), it's often easier to quickly create a new MVP for statistics in Google Sheets than to immediately start implementing some logic in GitHub. However, we aim to keep all the essential functionality within GitHub, which serves as the primary tool for controlling all of the Academy's delivery processes.
Expand All @@ -148,6 +148,6 @@ Coming into the role of Delivery Head of BSA, I was not tasked with establishing
Quoting the words of Jimmy Carter, the 39th president of the USA, from my favorite movie "[Miracle](<https://en.wikipedia.org/wiki/Miracle_(2004_film)>)": "_We've always had a faith that the days of our children would be better than our own_", by introducing tools like GitHub and all the other innovations into the Academy, which I have implemented and continue to implement, I wanted to facilitate the experience of participating in the Academy for both the current generation and all those who come after us.

<figure>
<img src="images/github-closed-milestones.png" alt="Closed GitHub milestones with all closed issues." />
<figcaption>What the ideal end of the Academy looks like to me.</figcaption>
<img src="images/github-closed-milestones.png" alt="Closed GitHub milestones with all closed issues." />
<figcaption>What the ideal end of the Academy looks like to me.</figcaption>
</figure>
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,13 @@ That's it, we took apart a small but useful example of the github action!
In the github interface, the runs will look like this:

<figure>
<img src="images/github-actions-run-history.png" alt="GitHub actions workflow history." />
<figcaption>Run History</figcaption>
<img src="images/github-actions-run-history.png" alt="GitHub actions workflow history." />
<figcaption>Run History</figcaption>
</figure>

<figure>
<img src="images/github-action.png" alt="GitHub actions steps inside workflow." />
<figcaption>Inside Each Run</figcaption>
<img src="images/github-action.png" alt="GitHub actions steps inside workflow." />
<figcaption>Inside Each Run</figcaption>
</figure>

## Branch protection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Let's start with the riddle, who is shown in this photo? 🙂
Most likely, you have worked with his product. 😉

<details>
<summary>Answer</summary>
<summary>Answer</summary>

**[Ryan Dahl](https://en.wikipedia.org/wiki/Ryan_Dahl)** is a software engineer and the original developer of the **`Node.js`** (~2009 year). In January 2012, Dahl announced that he turned over the reins to [NPM](<https://en.wikipedia.org/wiki/Npm_(software)>) creator.

Expand Down
Loading