Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
panpeng19 authored Mar 5, 2023
0 parents commit 12549c1
Show file tree
Hide file tree
Showing 9 changed files with 74 additions and 0 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 GitHub, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Learn how to use markdown
This repository is a starter portfolio that you can use to learn a little bit about communication using Markdown.
## Your GitHub Learning Lab Repository for Communicating Using Markdown

Welcome to your repository for your GitHub Learning Lab course. This repository will be used during the different activities that I will be guiding you through.

Oh! I haven't introduced myself...

I'm the GitHub Learning Lab bot and I'm here to help guide you in your journey to learn and master the various topics covered in this course. I will be using Issue and Pull Request comments to communicate with you. In fact, I already added an issue for you to check out.

![issue tab](https://lab.github.com/public/images/issue_tab.png)

I'll meet you over there, can't wait to get started!

This repository is licensed under [MIT](../LICENSE) (c) 2019 GitHub, Inc.

2 changes: 2 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
title: Welcome to my portfolio!
theme: jekyll-theme-cayman
1 change: 1 addition & 0 deletions _includes/01-name.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Hello world
2 changes: 2 additions & 0 deletions _includes/02-image.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Replace this with an image, like your photo. Ensure you include some alt-text.
![Image of GitHubcat](https://lamachinerie.org/wp-content/uploads/2019/06/github.jpg)
1 change: 1 addition & 0 deletions _includes/03-links.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[GitHub](http://github.com)
3 changes: 3 additions & 0 deletions _includes/04-lists.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
1. James Madison
2. James Monroe
3. John Quincy Adams
7 changes: 7 additions & 0 deletions _includes/05-emphasis.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
*This text will be italic* *Hello world*
_This will also be italic_ _Hello world_

**This text will be bold** **Hello world**
__This will also be bold__ __Hello world__

_You **can** combine them_ _Hello **world**_
21 changes: 21 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
layout: default
---

{% include 01-name.md %}

<br>

{% include 02-image.md %}

<br>

{% include 03-links.md %}

<br>

{% include 04-lists.md %}

<br>

{% include 05-emphasis.md %}

0 comments on commit 12549c1

Please sign in to comment.