{"id":15048549,"url":"https://github.com/gabrieldim/markdown-crash-course","last_synced_at":"2025-08-04T17:43:46.940Z","repository":{"id":128985302,"uuid":"380509015","full_name":"gabrieldim/Markdown-Crash-Course","owner":"gabrieldim","description":"Markdown Crash Course. Learn Markdown language on a simple way. ","archived":false,"fork":false,"pushed_at":"2021-07-23T21:02:11.000Z","size":7,"stargazers_count":101,"open_issues_count":0,"forks_count":7,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-24T03:11:22.219Z","etag":null,"topics":["better-readme","markdown","markdown-to-html","md","md-file","readme"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/gabrieldim.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2021-06-26T13:32:08.000Z","updated_at":"2024-08-24T00:43:39.000Z","dependencies_parsed_at":"2023-03-21T01:02:18.049Z","dependency_job_id":null,"html_url":"https://github.com/gabrieldim/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/gabrieldim%2FMarkdown-Crash-Course","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrieldim%2FMarkdown-Crash-Course/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrieldim%2FMarkdown-Crash-Course/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrieldim%2FMarkdown-Crash-Course/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gabrieldim","download_url":"https://codeload.github.com/gabrieldim/Markdown-Crash-Course/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248138842,"owners_count":21053966,"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":["better-readme","markdown","markdown-to-html","md","md-file","readme"],"created_at":"2024-09-24T21:13:56.230Z","updated_at":"2025-04-10T01:24:12.947Z","avatar_url":"https://github.com/gabrieldim.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Heading 1  '# '\n## Heading 2 '## '\n### Heading 3 '### '\n#### Heading 4 '#### '\n##### Heading 5 '##### '\n###### Heading 6 '###### '\n\u003cbr\u003e\n\n\u003c!-- Italics --\u003e\n*This text is italic* \u003cbr\u003e \n_This text is italic_\n\u003cbr\u003e\n\n\u003c!-- Strong --\u003e\n**This text is bold** \u003cbr\u003e \n__This text is bold__\n\u003cbr\u003e \n\n\u003c!-- Strikethrough --\u003e\n~~This text~~ is strikethrough\n\u003cbr\u003e \n\n\u003c!-- Horizontal Role --\u003e\n---\n___\n\u003cbr\u003e \n\n\u003c!-- Escape char --\u003e\n\\ before the actual rule.\n\u003cbr\u003e \n\n\n\u003c!-- Blackquote --\u003e\n\u003e This is a quote\n\u003cbr\u003e\n\n\u003c!-- Links --\u003e\n[Gabriel Dimitrievski - GitHub](https://github.com/gabrieldim)\n\u003cbr\u003e\n\n\u003c!-- Links cover text--\u003e\n[Gabriel Dimitrievski - GitHub](https://github.com/gabrieldim \"Follow me :)\")\n\u003cbr\u003e\n\n\u003c!-- Unordered List --\u003e\n* Text 1\n* Text 2\n* Text 3\n    * Nested text 1\n    * Nested text 2\n        * Nested text 1\n        * Nested text 2\n\u003cbr\u003e         \n\n\u003c!-- Ordered List --\u003e\n1. Text 1\n2. Text 2\n    1. Nested text 1\n5. Text 3 // it gives the appropriate order\n\u003cbr\u003e  \n\n\n\u003c!-- InLine Code Block --\u003e\n`\u003cp\u003eThis is paragraph\u003c/p\u003e`\n\u003cbr\u003e  \n\n\u003c!-- Images --\u003e\n![Markdown Logo](https://markdown-here.com/img/icon256.png \"Markdown Logo\")\n\u003cbr\u003e  \n\n\n\u003c!-- Code Blocks --\u003e\n```java \n//in the previous line we are saying the language that we are using.\nBufferedReader br = new BufferedReader(New InputStreamReader(System.in));\n\nString s = br.readLine();\n\n```\n\u003cbr\u003e \n\n```javascript\nfunction add(num1, num2){\n    return num1 + num2;\n}\n\n```\n\u003cbr\u003e \n\n\u003c!-- Tables --\u003e\n\n| Name   | Email           |\n| -----  | --------------- |\n| Test   | Test@gmail.com  |\n| Test2  | Test2@gmail.com |\n\u003cbr\u003e \n\n\u003c!-- Task Lists --\u003e\n\n* [x] Task 1\n* [x] Task 2\n* [ ] Task 3\n* [ ] \u003c/br\u003e\n\u003c/br\u003e\n\n\u003e Inspired by: [Brad Traversy](https://github.com/bradtraversy)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabrieldim%2Fmarkdown-crash-course","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgabrieldim%2Fmarkdown-crash-course","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabrieldim%2Fmarkdown-crash-course/lists"}