vmahdych / markdown-portfolio

https://vmahdych.github.io/markdown-portfolio
MIT License
0 stars 0 forks source link

A few of your favorite things #4

Closed github-learning-lab[bot] closed 2 years ago

github-learning-lab[bot] commented 2 years ago

Step 8: Add a list

In this pull request, you'll learn about lists and emoji. You'll also list a few details in your resume.

:point_down: These are expandable dialogues! Click to open and see more information.

Emoji ### Emoji Emoji are fun :sparkles:, and they can be silly :stuck_out_tongue_winking_eye:, but they can also be an important communication tool when working with remote teams ✅. Tone doesn't come across as clearly when reading text as it comes speaking face to face, and emojis can be helpful in conveying context and emotions. :heart: Emoji are best used as additive extras, not replacements for text. With images, descriptive text makes it clearer for screen readers, but screen readers aren't guaranteed to convey the intent of an emoji. Make sure your meaning is clear in text, so emoji will help instead of causing more confusion. Here are some examples of popular emojis in markdown. | What you see | What you type | | ---------- | ------------ | | :heart: | `:heart:` | | :+1: | `:+1:` | | :smile: | `:smile:` | | :sparkles: | `:sparkles:` | | :tada: | `:tada:` | For more information about available emoji, [see this handy cheat sheet](https://gist.github.com/rxaviers/7360908). In most text fields on GitHub, you can type `:` and then begin to type the name of an emoji. A fuzzy search will bring up the 5 best guesses and let you select one. ![image of fuzzy search emojis on GitHub](https://user-images.githubusercontent.com/9906718/34602228-47cab148-f1ff-11e7-91f1-56d0fed702f0.png)
Ordered Lists ### Ordered Lists Ordered lists have numbers. You can nest ordered lists within a list item by indenting them. You can read more about [formatting and syntax](https://help.github.com/articles/basic-writing-and-formatting-syntax/) in the _GitHub Help_. ``` 1. Item 1 2. Item 2 3. Item 3 1. Item 3a 2. Item 3b ``` 1. Item 1 2. Item 2 3. Item 3 1. Item 3a 2. Item 3b
Unordered Lists ### Unordered Lists To create an unordered list, use either the `-` or `*` character. As with ordered lists, you can nest a list by indenting two spaces. ``` * Item 1 * Item 2 * Item 2a * Item 2b ``` * Item 1 * Item 2 * Item 2a * Item 2b

Adding a list

Help people get to know you by adding a list containing a few of your favorite things. Don't know what to add? Why not add a list of your favorite books or places to eat.

:keyboard: Activity: Create a list

  1. In your shell, checkout to the branch in this pull request:
      git checkout add-lists-emphasis
  2. In your text editor of choice, open the file called 04-lists.md, in the _includes directory. Create a markdown list in the file. It can be ordered or unordered.
  3. Save your file.
  4. Stage your new file:
      git add _includes/04-lists.md
  5. Commit the change and add a commit message:
      git commit -m "<YOUR MESSAGE>"
  6. Push your new commit to GitHub:
      git push

Watch below for my response!

github-learning-lab[bot] commented 2 years ago

Step 9: Use emphasis

Great job with those lists! Let's try something new. You can use bold and italic text in Markdown. There are a couple of ways to create emphasis.

*This text will be italic*
_This will also be italic_

**This text will be bold**
__This will also be bold__

_You **can** combine them_

:keyboard: Activity: Add some emphasis

  1. In your shell, verify that you are currently checked out to the branch add-lists-emphasis:
      git status
  2. If you are not, then checkout to that branch:
      git checkout add-lists-emphasis
  3. In your text editor of choice, open the file called 05-emphasis.md, in the _includes directory. Add some information on your skills, including emphasis (like bold or italics).
  4. Save your file.
  5. Stage your new file:
      git add _includes/05-emphasis.md
  6. Commit the change and add a commit message:
      git commit -m "<YOUR MESSAGE>"
  7. Push your new commit to GitHub:
      git push

Watch below for my response!

github-learning-lab[bot] commented 2 years ago

Step 10: Merge lists and emphasis

Nice list, @vmahdych! You can merge this pull request when you're ready.

:keyboard: Activity: Merge the Pull Request

  1. Check out to the main branch:
    git checkout main
  2. Merge your branch:
    git merge add-lists-emphasis
  3. Push the merged history to GitHub:
    git push
  4. Delete your the branch locally:
    git branch -d add-lists-emphasis

Watch below for my response!

github-learning-lab[bot] commented 2 years ago

Nicely done, @vmahdych. See your work here: https://vmahdych.github.io/markdown-portfolio/

I gave your portfolio a makeover by adding a Jekyll theme. To select another theme, see “Adding a Jekyll theme to your GitHub Pages site with the Jekyll Theme Chooser in the GitHub Help.

:keyboard: Activity: Delete the branch

  1. Delete your branch in this pull request.

Go to the last step.