Skip to content

Commit

Permalink
Merge pull request #40 from Lextuga007/39-corrections
Browse files Browse the repository at this point in the history
Corrected Windows code and spelling
  • Loading branch information
mine-cetinkaya-rundel authored Mar 21, 2022
2 parents 6ea624c + 756fb9b commit 6c5f59f
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -404,14 +404,14 @@ Check if Git is already installed. Run the following in the *Terminal*.
.pull-left[
- Check if Git is installed

```{bash}
```{bash, eval = FALSE}
which git
```
]
.pull-right[
- Check the version of your Git

```{bash}
```{bash, eval = FALSE}
git --version
```
]
Expand All @@ -426,7 +426,7 @@ Add speaker notes

---

## Instal Git
## Install Git

.your-turn[
If `which git` didn't find Git installed, and if you weren't prompted to install it, run the following in the *Terminal*.
Expand Down Expand Up @@ -665,14 +665,14 @@ Check if Git is already installed. Run the following in the *Terminal*.
.pull-left[
- Check if Git is installed

```{bash}
which git
```{bash, eval = FALSE}
where git
```
]
.pull-right[
- Check the version of your Git

```{bash}
```{bash, eval = FALSE}
git --version
```
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -329,10 +329,6 @@
```bash
which git
```

```
## /usr/bin/git
```
]
.pull-right[
- Check the version of your Git
Expand All @@ -341,10 +337,6 @@
```bash
git --version
```

```
## git version 2.24.3 (Apple Git-128)
```
]

.tip[
Expand All @@ -357,7 +349,7 @@

---

## Instal Git
## Install Git

.your-turn[
If `which git` didn't find Git installed, and if you weren't prompted to install it, run the following in the *Terminal*.
Expand Down Expand Up @@ -613,11 +605,7 @@


```bash
which git
```

```
## /usr/bin/git
where git
```
]
.pull-right[
Expand All @@ -627,10 +615,6 @@
```bash
git --version
```

```
## git version 2.24.3 (Apple Git-128)
```
]


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* - xaringan wiki: https://github.com/yihui/xaringan/wiki
* - remarkjs wiki: https://github.com/gnab/remark/wiki
*
* Version: 0.4.0
* Version: 0.4.1
*
* ------------------------------------------------------- */
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap);
Expand Down Expand Up @@ -214,6 +214,36 @@ table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
color: var(--text-color) !important;
}

/* Horizontal alignment of code blocks */
.remark-slide-content.left pre,
.remark-slide-content.center pre,
.remark-slide-content.right pre {
text-align: start;
width: max-content;
max-width: 100%;
}
.remark-slide-content.left pre,
.remark-slide-content.right pre {
min-width: 50%;
min-width: min(40ch, 100%);
}
.remark-slide-content.center pre {
min-width: 66%;
min-width: min(50ch, 100%);
}
.remark-slide-content.left pre {
margin-left: unset;
margin-right: auto;
}
.remark-slide-content.center pre {
margin-left: auto;
margin-right: auto;
}
.remark-slide-content.right pre {
margin-left: auto;
margin-right: unset;
}

/* Slide Header Background for h1 elements */
.remark-slide-content.header_background > h1 {
display: block;
Expand Down

0 comments on commit 6c5f59f

Please sign in to comment.