{"id":18403255,"url":"https://github.com/codestackr/markdown-crash-course","last_synced_at":"2025-04-12T18:57:55.503Z","repository":{"id":100855726,"uuid":"456653726","full_name":"codeSTACKr/markdown-crash-course","owner":"codeSTACKr","description":null,"archived":false,"fork":false,"pushed_at":"2022-02-08T20:25:42.000Z","size":102,"stargazers_count":26,"open_issues_count":0,"forks_count":14,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-16T03:46:15.331Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codeSTACKr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"codestackr"}},"created_at":"2022-02-07T19:48:37.000Z","updated_at":"2025-01-05T10:29:21.000Z","dependencies_parsed_at":"2023-06-02T04:15:09.927Z","dependency_job_id":null,"html_url":"https://github.com/codeSTACKr/markdown-crash-course","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeSTACKr%2Fmarkdown-crash-course","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeSTACKr%2Fmarkdown-crash-course/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeSTACKr%2Fmarkdown-crash-course/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeSTACKr%2Fmarkdown-crash-course/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codeSTACKr","download_url":"https://codeload.github.com/codeSTACKr/markdown-crash-course/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248618277,"owners_count":21134200,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-06T02:46:27.602Z","updated_at":"2025-04-12T18:57:55.480Z","avatar_url":"https://github.com/codeSTACKr.png","language":null,"funding_links":["https://github.com/sponsors/codestackr"],"categories":[],"sub_categories":[],"readme":"# Markdown Crash Course\n\n**Video Course**\n\n[![Thumbnail](https://img.youtube.com/vi/ftOBvusMHjQ/maxresdefault.jpg)](https://youtu.be/ftOBvusMHjQ)\n\n--- \n\n## Basic Syntax\n\n### Headings\n\nBelow are 6 heading variations. \n\n# Heading 1\n\n## Heading 2\n\n### Heading 3\n\n#### Heading 4\n\n##### Heading 5\n\n###### Heading 6\n\n---\n\n### Horizontal Rule\n\n3 dashes creates a horizontal line.\n\n---\n\n### Text formating\n\nParagraph line spacing is important.\nThis sentence is on the same line even though it's on the next line of the editor because there's no separation of content.\n\nAdd an empty line between elements.\n\n*italic text* and _more italic text_\n\n**bold text** and __more bold text__\n\n***bold and italic text***\n\n**mix *and* match**\n\n~~strikethrough text~~\n\n### Lists\n\nOrdered List\n\n1. Item 1\n1. Item 2\n1. Item 3\n\nUnordered List\n\n- Item\n- Item\n- Item\n\n### Code formating\n\nInline: Use JavaScript `map()` on arrays. \n\nFenced code block:\n\n```js\nconst sum = (a, b) =\u003e a + b\n\nsum(2,2)\n```\n\n### Blockquote\n\n\u003e This is a blockquote\n\u003e \n\u003e more text\n\u003e \n\u003e \u003e Nexted blockquote\n\n### Links\n\n[codeSTACKr](https://youtube.com/codeSTACKr 'codeSTACKr YouTube')\n\n[Headings](#headings)\n\n[codeSTACKr][cs]\n\n[cs]: https://youtube.com/codeSTACKr 'codeSTACKr YouTube'\n\n### Images\n\n![alt text](/codecat.png)\n\n[![alt text](/codecat.png)](https://codecats.xyz)\n\n## Extended Syntax\n\nNot all extended syntax features work in all markdown applications. \n\n### Table\n\n| Packages | Description          | Version |\n| :---     |    :----:            |    ---: |\n| React    | JavaScript Framework | v18.0   |\n| Next.js  | React Framework      | v12.0   |\n\n### Task List\n\n- [x] Task 1\n- [ ] Task 2\n- [ ] Task 3\n\n### Emoji\n\nEmoji's are fun! :joy:\n\n### Comments\n\n[This is a hidden comment.]: # \n\n### Toggle\n\n\u003cdetails\u003e\n  \u003csummary\u003e:zap: This is a toggle!\u003c/summary\u003e\n\n  Contents of toggle.\n\u003c/details\u003e\n\n### Callouts\n\n\u003e :bulb: **Tip:** Here's an important tip to remember!\n\n### Table of Contents\n\n- [Basic Syntax](#basic-syntax)\n  - [Headings](#headings)\n  - [Horizontal Rule](#horizontal-rule)\n  - [Text formating](#text-formating)\n  - [Lists](#lists)\n  - [Code formating](#code-formating)\n  - [Blockquote](#blockquote)\n  - [Links](#links)\n  - [Images](#images)\n- [Extended Syntax](#extended-syntax)\n  - [Table](#table)\n  - [Task List](#task-list)\n  - [Highlight](#highlight)\n  - [Emoji](#emoji)\n  - [Comments](#comments)\n  - [Toggle](#toggle)\n  - [Callouts](#callouts)\n  - [Table of Contents](#table-of-contents)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodestackr%2Fmarkdown-crash-course","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodestackr%2Fmarkdown-crash-course","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodestackr%2Fmarkdown-crash-course/lists"}