{"id":20493634,"url":"https://github.com/code-lucidal58/markdown_cheatsheet","last_synced_at":"2026-03-10T04:32:02.464Z","repository":{"id":88633388,"uuid":"133544736","full_name":"code-lucidal58/markdown_cheatsheet","owner":"code-lucidal58","description":"Basic knowledge required to create you README file","archived":false,"fork":false,"pushed_at":"2018-05-27T19:04:08.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-05T17:51:24.887Z","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/code-lucidal58.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":"2018-05-15T16:36:33.000Z","updated_at":"2018-05-27T19:04:10.000Z","dependencies_parsed_at":"2024-03-30T19:34:04.562Z","dependency_job_id":null,"html_url":"https://github.com/code-lucidal58/markdown_cheatsheet","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/code-lucidal58/markdown_cheatsheet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-lucidal58%2Fmarkdown_cheatsheet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-lucidal58%2Fmarkdown_cheatsheet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-lucidal58%2Fmarkdown_cheatsheet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-lucidal58%2Fmarkdown_cheatsheet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/code-lucidal58","download_url":"https://codeload.github.com/code-lucidal58/markdown_cheatsheet/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-lucidal58%2Fmarkdown_cheatsheet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30324415,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T01:36:58.598Z","status":"online","status_checked_at":"2026-03-10T02:00:06.579Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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-15T17:36:02.674Z","updated_at":"2026-03-10T04:32:02.441Z","avatar_url":"https://github.com/code-lucidal58.png","language":null,"readme":"## Markdown Cheatsheet\n\n### Font Styles\nTo make a word italic, surround it with dash.\n```text\n_this_\n```\nTo make a word bold, surround it with two asterisk. \n```text\n**hello**\n```\nAsterisk and dash can be used simultaneously on a substring to make it bold and italic.\n\n### Headers\nMarkdown supports six types of headers. Add hash(#) in the start of the heading. \nOne hash for Header One and 6 hashes for Header Six. \nHeader One has the largest and Header Six has the smallest fonts.\nHeader one and six are used sparingly.\nHeaders cannot be made bold, but can be italicized.\n\n### Links\nThere are two ways in which links can be embedded to text. Both of them render in the exact same way.\nLink text can be made bold or italics. Headings can also links.\n#### First way\nSurround the text with square brackets[] and link in round brackets(). \n```text\n[Visit Github](www.github.com)\n```\nThese are called inline links.\n#### Second way\nThis way is called reference links. A reference is created for the link and those references are defined at the bottom of the markdown file.\n```text\n[This is a referenced link][a link]\n[a link]: www.github.com\n```\n\n### Images\nLike links, images also have two ways of definition and both of them render in the same way. Only difference, images are prefaced with an exclamation mark(!).\nFirst method is _inline image link_.\n```text\n![Benjamin Bannekat](https://octodex.github.com/images/bannekat.png)\n```\nThe text in square brackets is the alt text for image. Actual image is rendered. Adding alt text is optional.\u003cbr\u003e\u003cbr\u003e\nSecond method is same as for links, using references.. Those refernces hold the image link at the end of markdown file.\n```text\n![The first father][First Father]\n![The second first father][Second Father]\n\n[First Father]: http://octodex.github.com/images/founding-father.jpg\n[Second Father]: http://octodex.github.com/images/foundingfather_v2.png\n```\n\n### Blockquotes\nA blockquote is a sentence or paragraph that's been specially formatted to draw attention to the reader. To create a block quote, all you have to do is preface a line with the \"greater than\" caret (\u003e).\n```text\n\u003e\"Her eyes had called him and his soul had leaped at the call. To live, to err, to fall, to triumph, to recreate life out of life!\"\n```\nWhen quotes span multiple paragraph, each line must have caret(\u003e).\n\n### Lists\nTo create an unordered list, preface each item in the list with an asterisk ( * ). \n```text\n* Flour\n* Cheese\n* Tomatoes\n```\nFor ordered list, simply number them.\n```text\n1. Cut the cheese\n2. Slice the tomatoes\n3. Rub the tomatoes in flour\n```\nTo create sublists, indent the item with *one space more* than the previous item\n```text\n* Calculus\n * A professor\n * Often wears green\n* Castafiore\n * An opera singer\n * Is possibly mentally unwell\n```\nItem can be indented and sublisted indefinitely, but it's usually a good idea to stop after three levels. To add description to list item without making a sublist, the description must start in a new line and at indented by atleast one space.\n```text\n* Castafiore\n \n  He is an opera singer\n \n  He is possibly mentally unwell\n```\n### Paragraphs\nIn markdown, simply writing a sentence in new line won't actually render it in new line. If two new lines are inserted, then the rendered text will also have two new lines, thus breaking the togetherness. This is called *hard break\". For *soft break*, insert two spaces at the end of the line.\n```text\nWe pictured the meek mild creatures where  \nThey dwelt in their strawy pen,  \nNor did it occur to one of us there  \nTo doubt they were kneeling then.\n```\nThese can also be used for add descriptions to list, without extra new lines.\n```text\n1. Crack three eggs over a bowl.  \n Now, you're going to want to crack the eggs in such a way that you don't make a mess.  \n If you _do_ make a mess, use a towel to clean it up!\n\n2. Pour a gallon of milk into the bowl.  \n Basically, take the same guidance as above: don't be messy, but if you are, clean it up!\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode-lucidal58%2Fmarkdown_cheatsheet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcode-lucidal58%2Fmarkdown_cheatsheet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode-lucidal58%2Fmarkdown_cheatsheet/lists"}