GithubHelp home page GithubHelp logo

Welcome about communicating-with-github HOT 4 OPEN

jasonetco avatar jasonetco commented on May 28, 2024
Welcome

from communicating-with-github.

Comments (4)

JasonEtco avatar JasonEtco commented on May 28, 2024

header

** dsfadfsa**

https://github.com/jasonetco

from communicating-with-github.

galileo-dev-app avatar galileo-dev-app commented on May 28, 2024

Congratulations, you've done it!

Next, let's learn some more markdown and get a little more practice.

More Markdown

Lists

Ordered Lists
Ordered lists have numbers and can have indented children that are also ordered.

When you're creating ordered lists, you can type out the exact number you want to show in order, (1, 2, 3, etc.) but you can also type every number as "1.". Markdown will take care of the rest of the numbering for you, and your list will be easier to maintain.

1. Item 1
1. Item 2
1. Item 3
   1. Item 3a
   1. Item 3b
  1. Item 1
  2. Item 2
  3. Item 3
    1. Item 3a
    2. Item 3b

Unordered Lists
To create an unordered list, you can use the `-` character or the `*` character. To do an indented child list item, you need to type a tab or at least two spaces.
* Item 1
* Item 2
  * Item 2a
  * Item 2b
  • Item 1
  • Item 2
    • Item 2a
    • Item 2b

Task Lists
A task list creates checkboxes that can be checked off by collaborators in a given repository. They're very handy for tracking issues, pull requests, and any to-do item.

If you include a task list in the first comment of an Issue, you will get a handy progress indicator in your issue list. It also works in Pull Requests!

Watch out, because the syntax for task lists is very specific. Be sure to include the spaces where required, or else they won't work.

- [x] Other markdown is supported, including @mentions, #refs, [links](), **formatting**, and <del>tags</del>
- [x] list syntax required (any unordered or ordered list supported)
- [x] this is a complete item
- [ ] this is an incomplete item
  • @mentions, #refs, links, formatting, and tags supported
  • list syntax required (any unordered or ordered list supported)
    • Like this
  • this is a complete item
  • this is an incomplete item

Code Blocks

Inline Code Blocks
Sometimes, it makes text easier to read if you specify a certain term as `code`. The word "code" in the previous sentence was distinguished in markdown with `inline code blocks`.

Inline code is just one ``` character on either side of the text, and can be used within paragraphs, headers, or other markdown.

`inline code is just one backtick`

inline code is just one backtick


Separate Code Blocks
If you need to separate out a larger block of code, use three ``` characters instead of one, and set the text aside in its own paragraph. This is how the course shows you how markdown looks without actually formatting it.
Anything put in this **paragraph** will not be _formatted_ even if it would normally be recognized in this setting. :taco:

Anything put in this paragraph will not be formatted even if it would normally be recognized in this setting. 🌮


Syntax Highlighting
In addition to code blocks, you can specify how the code should be formatted by language. For example, take a look at this JavaScript code in a regular code block:

What we type:
function fancyAlert(arg) { if(arg) { $.facebox({div:'#foo'}) } }

What we see:

function fancyAlert(arg) {
  if(arg) {
    $.facebox({div:'#foo'})
  }
}

But, when we add the language after the first three ``` characters, the formatting is specific to the programming language.

What we type:
javascript function fancyAlert(arg) { if(arg) { $.facebox({div:'#foo'}) } }

What we see:

function fancyAlert(arg) {
  if(arg) {
    $.facebox({div:'#foo'})
  }
}

Activity

  1. Comment again, using at least two of the following:
  • ordered list
  • unordered list
  • task list
  • inline code block
  • separate code block

from communicating-with-github.

beardofedu avatar beardofedu commented on May 28, 2024
  • hello
  • there
  1. hello
  2. to
  3. you

from communicating-with-github.

JasonEtco avatar JasonEtco commented on May 28, 2024
  • hello
  • there
  1. hello
  2. to
  3. you

from communicating-with-github.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.