{"id":73372,"date":"2025-03-20T18:00:06","date_gmt":"2025-03-20T10:00:06","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=73372"},"modified":"2025-03-11T18:55:42","modified_gmt":"2025-03-11T10:55:42","slug":"copilot-commit-message-guide","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/","title":{"rendered":"Improve Copilot Git Commit with Custom Instruction"},"content":{"rendered":"<p>GitHub Copilot is an <a href=\"https:\/\/www.hongkiat.com\/blog\/best-ai-powered-code-editors\/\">AI-powered code editor<\/a> that can help you write code faster by suggesting code snippets, completing functions, and it even <strong>can help you generate Git commit messages<\/strong> which suggests commit messages based on the code changes.<\/p>\n<p>In VSCode, you can find this feature in the <strong>Source Control<\/strong> panel within commit message input. It appears as a sparkle icon. You can simply click on this icon to generate the commit message.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/copilot-commit-message-guide\/github-copilot-commit-cover.jpg\" alt=\"GitHub Copilot commit message generation interface in VSCode\" width=\"1000\" height=\"640\"><\/figure>\n<p>It\u2019s that easy and straightforward to use. But there\u2019s one problem: the message generated feels pretty generic. What if you want to enforce specific pattern like <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/commitizen-tools.github.io\/commitizen\/\">Commitizen<\/a>, or include description?<\/p>\n<p>Fortunately, Github Copilot allows you to do that. Let\u2019s see how:<\/p>\n<h2>Modify Github Copilot Instruction<\/h2>\n<p>To improve Copilot\u2019s commit messages, we need to configure custom instructions in VSCode:<\/p>\n<p>First, we need to go the VSCode <strong>Settings<\/strong>. You can hit <kbd>Ctrl<\/kbd> + <kbd>,<\/kbd> or <kbd>Cmd<\/kbd> + <kbd>,<\/kbd> if you\u2019re on a macOS.<\/p>\n<p>Search for <strong><q>Commit Message Generation Instruction<\/q><\/strong>. You should find at the very top of the result, as seen below:<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/copilot-commit-message-guide\/github-copilot-instructions-settings.jpg\" alt=\"VSCode settings panel showing GitHub Copilot commit message generation options\" width=\"1000\" height=\"320\"><\/figure>\n<p>Click on the <strong>Edit in settings.json<\/strong> under the section. This should generate the key required in the setting to provide our custom instructions.<\/p>\n<pre>\r\n{\r\n    github.copilot.chat.commitMessageGeneration.instructions: []\r\n}\r\n<\/pre>\n<p>As we can see above, the setting accepts an array. It means that can provide as multiple instructions to Copilot.<\/p>\n<p>We can provide the instruction as plain text.<\/p>\n<p>For example, we can add a very simple instruction to generate the commit message with the <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/www.conventionalcommits.org\/en\/v1.0.0\/\">Conventional Commits<\/a> format.<\/p>\n<pre>\r\n{\r\n    \"github.copilot.chat.commitMessageGeneration.instructions\": [\r\n        {\r\n            \"text\": \"Use the Conventional Commit message specification.\"\r\n        },\r\n        {\r\n            \"text\": \"If possible, explain the details about the changes in commit body.\"\r\n        }\r\n    ]\r\n}\r\n<\/pre>\n<p>Before changing the format, Copilot would typically generate the message as <strong><q>Add UUID generation tests for feature.<\/q><\/strong>. After changing it, Github Copilot will write the commit message in all lowercase, and correctly mark the type of change as per the Conventional Commits, as we can see below:<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/copilot-commit-message-guide\/github-copilot-generated-message.jpg\" alt=\"Example of GitHub Copilot generated commit message using Conventional Commits format\" width=\"1000\" height=\"572\"><\/figure>\n<p>We can add multiple instructions. In this case, I\u2019d like to expand the instruction to add more details about the changes in the commit body.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/copilot-commit-message-guide\/github-copilot-generated-message-body.jpg\" alt=\"Example of GitHub Copilot generated commit message with detailed body\" width=\"1000\" height=\"544\"><\/figure>\n<h2>Using File Instruction<\/h2>\n<p>If your custom instruction needs to be detailed, and that it can be pretty long, you can consider adding it in a Markdown or plain text file.<\/p>\n<p>For example, we can add the following in a file:<\/p>\n<pre>\r\nThe commit message should be a brief summary of the changes followed by a blank line and a more detailed explanation.\r\n\r\nThe detailed explanation should be in the form of a paragraph or paragraphs.\r\n<\/pre>\n<p>Then, we simply reference the file in the config with the <code>file<\/code> prop.<\/p>\n<pre>\r\n    {\r\n        github.copilot.chat.commitMessageGeneration.instructions: [\r\n            {\r\n                \"file\": \"commit-message-instruction.md\"\r\n            }\r\n        ]\r\n    }\r\n<\/pre>\n<h2>Wrapping up<\/h2>\n<p>That\u2019s it! You can define the configuration at the User or Workspace level, which will help you ensure that everyone working on your project would generate commit messages that follow the required format in the project, and include the necessary details.<\/p>\n<p>This feature is <strong>available in the Github Copilot free tier<\/strong>. If you haven\u2019t used it, give it a try. It is so convenient and I believe will make you even be more productive.<\/p>","protected":false},"excerpt":{"rendered":"<p>GitHub Copilot is an AI-powered code editor that can help you write code faster by suggesting code snippets, completing functions, and it even can help you generate Git commit messages which suggests commit messages based on the code changes. In VSCode, you can find this feature in the Source Control panel within commit message input.&hellip;<\/p>\n","protected":false},"author":113,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3392],"tags":[],"topic":[],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Improve Copilot Git Commit with Custom Instruction - Hongkiat<\/title>\n<meta name=\"description\" content=\"GitHub Copilot is an AI-powered code editor that can help you write code faster by suggesting code snippets, completing functions, and it even can help\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Improve Copilot Git Commit with Custom Instruction\" \/>\n<meta property=\"og:description\" content=\"GitHub Copilot is an AI-powered code editor that can help you write code faster by suggesting code snippets, completing functions, and it even can help\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2025-03-20T10:00:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/copilot-commit-message-guide\/github-copilot-commit-cover.jpg\" \/>\n<meta name=\"author\" content=\"Thoriq Firdaus\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@tfirdaus\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Thoriq Firdaus\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/copilot-commit-message-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/copilot-commit-message-guide\\\/\"},\"author\":{\"name\":\"Thoriq Firdaus\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\"},\"headline\":\"Improve Copilot Git Commit with Custom Instruction\",\"datePublished\":\"2025-03-20T10:00:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/copilot-commit-message-guide\\\/\"},\"wordCount\":447,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/copilot-commit-message-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/copilot-commit-message-guide\\\/github-copilot-commit-cover.jpg\",\"articleSection\":[\"Coding\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/copilot-commit-message-guide\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/copilot-commit-message-guide\\\/\",\"name\":\"Improve Copilot Git Commit with Custom Instruction - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/copilot-commit-message-guide\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/copilot-commit-message-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/copilot-commit-message-guide\\\/github-copilot-commit-cover.jpg\",\"datePublished\":\"2025-03-20T10:00:06+00:00\",\"description\":\"GitHub Copilot is an AI-powered code editor that can help you write code faster by suggesting code snippets, completing functions, and it even can help\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/copilot-commit-message-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/copilot-commit-message-guide\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/copilot-commit-message-guide\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/copilot-commit-message-guide\\\/github-copilot-commit-cover.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/copilot-commit-message-guide\\\/github-copilot-commit-cover.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/copilot-commit-message-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Improve Copilot Git Commit with Custom Instruction\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\",\"name\":\"Thoriq Firdaus\",\"description\":\"Thoriq is a writer for Hongkiat.com with a passion for web design and development. He is the author of Responsive Web Design by Examples, where he covered his best approaches in developing responsive websites quickly with a framework.\",\"sameAs\":[\"https:\\\/\\\/thoriq.com\",\"https:\\\/\\\/x.com\\\/tfirdaus\"],\"jobTitle\":\"Web Developer\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/thoriq\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Improve Copilot Git Commit with Custom Instruction - Hongkiat","description":"GitHub Copilot is an AI-powered code editor that can help you write code faster by suggesting code snippets, completing functions, and it even can help","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/","og_locale":"en_US","og_type":"article","og_title":"Improve Copilot Git Commit with Custom Instruction","og_description":"GitHub Copilot is an AI-powered code editor that can help you write code faster by suggesting code snippets, completing functions, and it even can help","og_url":"https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2025-03-20T10:00:06+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/copilot-commit-message-guide\/github-copilot-commit-cover.jpg","type":"","width":"","height":""}],"author":"Thoriq Firdaus","twitter_card":"summary_large_image","twitter_creator":"@tfirdaus","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Thoriq Firdaus","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/"},"author":{"name":"Thoriq Firdaus","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807"},"headline":"Improve Copilot Git Commit with Custom Instruction","datePublished":"2025-03-20T10:00:06+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/"},"wordCount":447,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/copilot-commit-message-guide\/github-copilot-commit-cover.jpg","articleSection":["Coding"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/","url":"https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/","name":"Improve Copilot Git Commit with Custom Instruction - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/copilot-commit-message-guide\/github-copilot-commit-cover.jpg","datePublished":"2025-03-20T10:00:06+00:00","description":"GitHub Copilot is an AI-powered code editor that can help you write code faster by suggesting code snippets, completing functions, and it even can help","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/copilot-commit-message-guide\/github-copilot-commit-cover.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/copilot-commit-message-guide\/github-copilot-commit-cover.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/copilot-commit-message-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Improve Copilot Git Commit with Custom Instruction"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807","name":"Thoriq Firdaus","description":"Thoriq is a writer for Hongkiat.com with a passion for web design and development. He is the author of Responsive Web Design by Examples, where he covered his best approaches in developing responsive websites quickly with a framework.","sameAs":["https:\/\/thoriq.com","https:\/\/x.com\/tfirdaus"],"jobTitle":"Web Developer","url":"https:\/\/www.hongkiat.com\/blog\/author\/thoriq\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-j5q","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/73372","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/113"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=73372"}],"version-history":[{"count":2,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/73372\/revisions"}],"predecessor-version":[{"id":73374,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/73372\/revisions\/73374"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=73372"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=73372"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=73372"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=73372"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}