{"id":22341684,"url":"https://github.com/maybe515/github-markdown-memo","last_synced_at":"2025-03-26T09:27:43.094Z","repository":{"id":233718939,"uuid":"787683074","full_name":"Maybe515/github-markdown-memo","owner":"Maybe515","description":"Markdown備忘録　- GitHub Markdown Memo -","archived":false,"fork":false,"pushed_at":"2024-04-18T08:58:25.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-31T10:44:29.601Z","etag":null,"topics":["markdown","memo"],"latest_commit_sha":null,"homepage":"","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/Maybe515.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":"2024-04-17T01:33:59.000Z","updated_at":"2024-06-05T01:43:44.000Z","dependencies_parsed_at":null,"dependency_job_id":"a11fb61b-4f88-4795-9745-20ffb8a4dfc2","html_url":"https://github.com/Maybe515/github-markdown-memo","commit_stats":null,"previous_names":["maybe515/github-memo","maybe515/github-markdown-memo"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Maybe515%2Fgithub-markdown-memo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Maybe515%2Fgithub-markdown-memo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Maybe515%2Fgithub-markdown-memo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Maybe515%2Fgithub-markdown-memo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Maybe515","download_url":"https://codeload.github.com/Maybe515/github-markdown-memo/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245625158,"owners_count":20646099,"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":["markdown","memo"],"created_at":"2024-12-04T08:07:59.822Z","updated_at":"2025-03-26T09:27:42.818Z","avatar_url":"https://github.com/Maybe515.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Markdown Memo 📝\n  GitHubで使用できるマークダウンやフォーマットの構文を自分なりにまとめとく備忘録。  \n  「あのマークダウンなんだっけ...」「これ表現できるのかな...」と毎度調べるのも面倒なので随時書き足していきます。  \n  \u003cbr\u003e\n  \n  ▼いつも参考にしてる記事・文献\n  - [基本的な書き方とフォーマットの構文 - GitHub Docs](https://docs.github.com/ja/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#quoting-text)\n\u003cbr\u003e\n\n## 見出し - Heading -\n  - １つ～６つの `#` シンボルを先頭に配置する。\n  ```\n  # h1\n  ## h2\n  ### h3\n  #### h4\n  ##### h5\n  ###### h6\n  ```\n  \u003cimg src=\"/images/heading.jpg\" alt=\"heading\" height=\"300px\"\u003e\n  \u003cbr\u003e\n  \n  - HTMLの `\u003ch1\u003e`～`\u003ch6\u003e` タグでも同様に\"見出し\"を生成できる。  \n  ```\n  \u003ch1\u003eh1\u003c/h1\u003e\n  \u003ch2\u003eh2\u003c/h2\u003e\n  \u003ch3\u003eh3\u003c/h3\u003e\n  \u003ch4\u003eh4\u003c/h4\u003e\n  \u003ch5\u003eh5\u003c/h5\u003e\n  \u003ch6\u003eh6\u003c/h6\u003e\n  ```\n  \u003cimg src=\"/images/heading.jpg\" alt=\"heading\" height=\"300px\"\u003e\n  \u003cbr\u003e\n  \n  - `\u003ch1\u003e`～`\u003ch6\u003e` タグはAlign要素を指定できる。左揃え・中央揃え・右揃えさせることが可能。\n  ```\n  \u003ch1 align=\"left\"\u003eh1\u003c/h1\u003e\n  \u003ch2 align=\"center\"\u003eh2\u003c/h2\u003e\n  \u003ch3 align=\"right\"\u003eh3\u003c/h3\u003e\n  ```\n  \u003cimg src=\"/images/heading-align.jpg\" alt=\"heading-align\" width=\"500px\"\u003e \n  \u003cbr\u003e\n\n## テキスト書式　- Text Style -\n  |スタイル|構文|入力例|出力|\n  :-:|:-:|:-:|:-:\n  |太字|`** **` or `__ __`|`**Maybe515**`|**Maybe515**|\n  |斜体|`* *` or `_ _`|`_Maybe515_`|_Maybe515_|\n  |取り消し線|`~~ ~~`|`~~Maybe515~~`|~~Maybe515~~|\n  |太字内の斜体|`** **` or `__ __` 内で\u003cbr\u003e`* *` or `_ _`|`**May*be*515**`\u003cbr\u003e`__May*be*515__`|**May*be*515**\u003cbr\u003e __May*be*515__|\n  |太字かつ斜体|`*** ***`|`***Maybe515***`|***Maybe515***|\n  |Subscript|`\u003csub\u003e \u003c/sub\u003e`|`(Text1) \u003csub\u003eMaybe515\u003c/sub\u003e (Text2)`|(Text1) \u003csub\u003eMaybe515\u003c/sub\u003e (Text2)|\n  |Superscript|`\u003csup\u003e \u003c/sup\u003e`|`(Text1) \u003csup\u003eMaybe515\u003c/sup\u003e (Text2)`|(Text1) \u003csup\u003eMaybe515\u003c/sup\u003e (Text2)|\n  \u003cbr\u003e\n  \n## テキスト引用　- Text Quote-\n  - `\u003e` シンボルを先頭に配置する。\n  ```\n  Text Quote\n  \u003e Text Quote 1\n  \u003e\u003e Text Quote 2\n  \u003e\u003e\u003e Text Quote 3\n  ```\n  Text Quote\n  \u003e Text Quote 1\n  \u003e\u003e Text Quote 2\n  \u003e\u003e\u003e Text Quote 3\n  \u003cbr\u003e\n\n## コード引用　- Code Quote -\n- 単一のバッククォートで文章内のコード、コマンドを引用できる。\n```\nGitHub `Markdown` Memo\n```\nGitHub `Markdown` Memo  \n\u003cbr\u003e\n- ３重のバッククォートで囲むと行レベルで引用ができる。\n~~~\nTest\n```\nQuote 1\nQuote 2\nQuote 3\n```\n~~~\n\nTest\n```\nQuote 1\nQuote 2\nQuote 3\n```\n\u003e [!NOTE]\n\u003e \u003ccode\u003e```\u003c/code\u003e (トリプルバッククォート)自体をコード化したい場合は `\u003ccode\u003e` タグ、もしくは \u003ccode\u003e~~~\u003c/code\u003e (トリプルチルダ)、\u003ccode\u003e````\u003c/code\u003e (クアッドバッククォート)を使用するとできる。  \n\u003cbr\u003e\n\n\u003c!-- ## カラーモデル　- Color Model - --\u003e\n## リンク　- Link -\nリンク テキストを角かっこ `[ ]` で囲み、URL をかっこ `( )` で囲む。\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaybe515%2Fgithub-markdown-memo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaybe515%2Fgithub-markdown-memo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaybe515%2Fgithub-markdown-memo/lists"}