{"id":5597,"date":"2025-11-27T15:03:33","date_gmt":"2025-11-27T15:03:33","guid":{"rendered":"https:\/\/thumbtube.com\/blog\/?p=5597"},"modified":"2025-11-27T15:18:36","modified_gmt":"2025-11-27T15:18:36","slug":"can-you-add-comments-to-mathjax-explained","status":"publish","type":"post","link":"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/","title":{"rendered":"Can You Add Comments to MathJax? Explained"},"content":{"rendered":"<p>MathJax has become the go-to tool for rendering mathematical notation across the web. Whether in blogs, technical manuals, or scientific documents, it provides a seamless way to include beautiful, scalable math. But as formulas get longer and more complex, developers and educators alike may wonder: can you add comments to MathJax code to make it easier to understand or maintain?<\/p>\n<h3>TL;DR (Too Long; Didn\u2019t Read)<\/h3>\n<p>Yes, you can add comments to MathJax, but it&#8217;s important to understand the method depends on the input format you&#8217;re using\u2014either LaTeX or MathML. In LaTeX, comments can be added similarly to traditional LaTeX using the percent symbol (<code>%<\/code>), but only outside math expressions. For inline comments within math expressions, workarounds such as text mode or HTML-based comments are recommended. These approaches help keep code readable and maintainable without affecting the rendered output.<\/p>\n<h2>Understanding MathJax and Its Input Formats<\/h2>\n<p>MathJax supports multiple input formats with the two most common being:<\/p>\n<ul>\n<li><strong>TeX\/LaTeX:<\/strong> This is by far the most popular method. Users familiar with LaTeX will feel right at home using this format for writing formulas.<\/li>\n<li><strong>MathML:<\/strong> An XML-based markup language for describing mathematical notations, often used in more semantically-rich environments.<\/li>\n<\/ul>\n<p>The way you handle comments in MathJax depends significantly on which of these formats you&#8217;re using.<\/p>\n<h2>Using Comments in LaTeX with MathJax<\/h2>\n<p>LaTeX naturally supports comments using the <code>%<\/code> character. In a full LaTeX document, this is handy for hiding notes or documentation that shouldn&#8217;t be rendered. However, MathJax processes snippets of LaTeX code, generally within delimiters such as <code>\\(...\\)<\/code> for inline math or <code>\\[...\\]<\/code> for display math. This means that the <code>%<\/code> character behaves a bit differently.<\/p>\n<p><strong>Important highlights:<\/strong><\/p>\n<ul>\n<li><em>Comments using <code>%<\/code> must be placed outside math environments<\/em> to avoid rendering errors.<\/li>\n<li><em>Using <code>%<\/code> inside a math block might cause unexpected behavior<\/em> since MathJax isn\u2019t a full LaTeX parser.<\/li>\n<\/ul>\n<p>For example, this will generally work:<\/p>\n<pre><code>\/\/ Outside math environment\n% This is a comment explaining the next formula\n\\( a^2 + b^2 = c^2 \\)\n<\/code><\/pre>\n<p>But placing a comment inside a MathJax block may break parsing:<\/p>\n<pre><code>\\( a^2 + b^2 % This won't work \\)\n<\/code><\/pre>\n<h2>Workarounds to Comment Inside Math Expressions<\/h2>\n<p>Since inserting a traditional comment within a MathJax math expression can lead to errors, developers often use workarounds to simulate comments that don\u2019t show up in the output but still give clues or hints in the source.<\/p>\n<h3>1. HTML Comments<\/h3>\n<p>If you&#8217;re embedding MathJax inside an HTML document, you can use HTML comments:<\/p>\n<pre><code>&lt;!-- This formula calculates the area of a circle --&gt;\n\\( A = \\pi r^2 \\)\n<\/code><\/pre>\n<p>These HTML comments are completely ignored by MathJax and won&#8217;t interfere with rendering.<\/p>\n<h3>2. Using <code>\\text{}<\/code> for Inline Notes (Visible)<\/h3>\n<p>In cases where it&#8217;s useful for short comments to actually be visible in the rendered output\u2014for educational or explanatory purposes\u2014you can place those comments in <code>\\text{}<\/code> blocks or tag them visually.<\/p>\n<pre><code>\\( x^2 + y^2 = z^2 \\quad \\text{(Pythagorean theorem)} \\)\n<\/code><\/pre>\n<p>However, it&#8217;s important to note that this method makes the comment visible to users, which might not always be the intent.<\/p>\n<h3>3. Data Attributes or Javascript Comments (Advanced)<\/h3>\n<p>For developers integrating MathJax with custom scripts, it\u2019s also possible to use <code>data-<\/code> attributes on surrounding HTML tags or to keep comments inside script blocks containing MathJax TeX.<\/p>\n<pre><code>&lt;script type=\"math\/tex\"&gt;\n  % Advanced comment not shown in output\n  a^n + b^n = c^n \\quad \\text{(Fermat's Last Theorem)}\n&lt;\/script&gt;\n<\/code><\/pre>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"810\" src=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-computer-screen-with-code-on-it-math-latex-code-comment-1.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-computer-screen-with-code-on-it-math-latex-code-comment-1.jpg 1080w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-computer-screen-with-code-on-it-math-latex-code-comment-1-300x225.jpg 300w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-computer-screen-with-code-on-it-math-latex-code-comment-1-1024x768.jpg 1024w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-computer-screen-with-code-on-it-math-latex-code-comment-1-768x576.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" \/>\n<p>This is more complex but allows for tighter integration and documentation in larger projects.<\/p>\n<h2>How About Comments in MathML?<\/h2>\n<p>MathML, being XML-based, offers a conventional way to insert comments using the standard XML comment syntax:<\/p>\n<pre><code>&lt;!-- This is a MathML comment --&gt;\n&lt;math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\"&gt;\n  &lt;msup&gt;\n    &lt;mi&gt;a&lt;\/mi&gt;\n    &lt;mn&gt;2&lt;\/mn&gt;\n  &lt;\/msup&gt;\n&lt;\/math&gt;\n<\/code><\/pre>\n<p>MathJax will completely ignore these comments in rendering.<\/p>\n<h3>Advantages:<\/h3>\n<ul>\n<li><em>Safer and standards-compliant<\/em> commenting method for more structured documents.<\/li>\n<li>Non-intrusive and does not interfere with the visual appearance.<\/li>\n<\/ul>\n<h2>Best Practices for Commenting in MathJax<\/h2>\n<p>Effective commenting in MathJax isn\u2019t so much about whether it&#8217;s possible\u2014it is\u2014but about how to do it cleanly and without disrupting rendering. These best practices can help:<\/p>\n<ul>\n<li><strong>Keep comments outside of math environments<\/strong> wherever possible.<\/li>\n<li><strong>Use HTML comments<\/strong> in web-based environments for clarity and ease.<\/li>\n<li><strong>Use <code>\\text{}<\/code> or <code>\\tag{}<\/code> creatively<\/strong> if visible inline annotations are acceptable.<\/li>\n<li><strong>Stick to XML comments in MathML<\/strong> to maintain clean markup.<\/li>\n<\/ul>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"718\" src=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-piece-of-paper-with-writing-on-it-math-equations-web-development-latex.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-piece-of-paper-with-writing-on-it-math-equations-web-development-latex.jpg 1080w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-piece-of-paper-with-writing-on-it-math-equations-web-development-latex-300x199.jpg 300w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-piece-of-paper-with-writing-on-it-math-equations-web-development-latex-1024x681.jpg 1024w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-piece-of-paper-with-writing-on-it-math-equations-web-development-latex-768x511.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Should You Comment MathJax Code?<\/h2>\n<p>In collaborative environments like educational platforms, scientific blogs, and documentation sites, commenting MathJax code becomes essential. Whether it\u2019s to explain why a certain formula is used, clarify variable roles, or note assumptions, comments improve readability and reduce maintenance headaches.<\/p>\n<p>Especially in multilingual or collaborative projects where several contributors touch the same file, comments provide quick insight into the author\u2019s original intentions.<\/p>\n<h2>Conclusion<\/h2>\n<p>While MathJax doesn&#8217;t support comments in the same way a traditional programming language might, there are plenty of ways to document and explain LaTeX and MathML code without interfering with rendering. It\u2019s more of an art than a strict process, particularly since not all commenting methods are natively supported inside math expressions themselves. Understanding the safest and most effective ways to add comments leads to cleaner, more maintainable, and more professional documentation.<\/p>\n<h2>FAQ: Comments in MathJax<\/h2>\n<ul>\n<li><strong>Q: Can I use <code>%<\/code> inside a MathJax formula to comment?<\/strong><br \/>\n  <em>A:<\/em> No, it\u2019s not recommended. Use it only outside the math block. Inside, it may cause parsing errors.<\/li>\n<li><strong>Q: Will HTML comments break MathJax parsing?<\/strong><br \/>\n  <em>A:<\/em> Not at all. HTML comments like <code>&lt;!-- Note --&gt;<\/code> are ignored by MathJax and do not affect rendering.<\/li>\n<li><strong>Q: Is <code>\\text{}<\/code> a valid way to add side comments within a formula?<\/strong><br \/>\n  <em>A:<\/em> Yes, but those comments will be visible in the rendered output.<\/li>\n<li><strong>Q: How do I comment formulas in MathML when using MathJax?<\/strong><br \/>\n  <em>A:<\/em> Use XML-style comments: <code>&lt;!-- This is a comment --&gt;<\/code>.<\/li>\n<li><strong>Q: Do comments affect MathJax performance?<\/strong><br \/>\n  <em>A:<\/em> No, not significantly. Properly-placed comments are ignored and do not impact speed or output quality.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>MathJax has become the go-to tool for rendering mathematical notation across the web. Whether in &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Can You Add Comments to MathJax? Explained\" class=\"read-more button\" href=\"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/#more-5597\" aria-label=\"Read more about Can You Add Comments to MathJax? Explained\">Read More<\/a><\/p>\n","protected":false},"author":78,"featured_media":5599,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[],"class_list":["post-5597","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guides","infinite-scroll-item","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-25","no-featured-image-padding"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Can You Add Comments to MathJax? Explained - ThumbTube<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Can You Add Comments to MathJax? Explained - ThumbTube\" \/>\n<meta property=\"og:description\" content=\"MathJax has become the go-to tool for rendering mathematical notation across the web. Whether in ... Read More\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/\" \/>\n<meta property=\"og:site_name\" content=\"ThumbTube\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-27T15:03:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-27T15:18:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-computer-screen-with-code-on-it-math-latex-code-comment.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"810\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ethan Martinez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ethan Martinez\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/\",\"url\":\"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/\",\"name\":\"Can You Add Comments to MathJax? Explained - ThumbTube\",\"isPartOf\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-computer-screen-with-code-on-it-math-latex-code-comment.jpg\",\"datePublished\":\"2025-11-27T15:03:33+00:00\",\"dateModified\":\"2025-11-27T15:18:36+00:00\",\"author\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/4fe17b14e96eaa537d646cb9ae441583\"},\"breadcrumb\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/#primaryimage\",\"url\":\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-computer-screen-with-code-on-it-math-latex-code-comment.jpg\",\"contentUrl\":\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-computer-screen-with-code-on-it-math-latex-code-comment.jpg\",\"width\":1080,\"height\":810},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/thumbtube.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Can You Add Comments to MathJax? Explained\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/thumbtube.com\/blog\/#website\",\"url\":\"https:\/\/thumbtube.com\/blog\/\",\"name\":\"ThumbTube\",\"description\":\"Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/thumbtube.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/4fe17b14e96eaa537d646cb9ae441583\",\"name\":\"Ethan Martinez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/993fbfe1588a77db452e8ea37ed7fcba?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/993fbfe1588a77db452e8ea37ed7fcba?s=96&d=mm&r=g\",\"caption\":\"Ethan Martinez\"},\"description\":\"I'm Ethan Martinez, a tech writer focused on cloud computing and SaaS solutions. I provide insights into the latest cloud technologies and services to keep readers informed.\",\"url\":\"https:\/\/thumbtube.com\/blog\/author\/ethan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Can You Add Comments to MathJax? Explained - ThumbTube","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:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/","og_locale":"en_US","og_type":"article","og_title":"Can You Add Comments to MathJax? Explained - ThumbTube","og_description":"MathJax has become the go-to tool for rendering mathematical notation across the web. Whether in ... Read More","og_url":"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/","og_site_name":"ThumbTube","article_published_time":"2025-11-27T15:03:33+00:00","article_modified_time":"2025-11-27T15:18:36+00:00","og_image":[{"width":1080,"height":810,"url":"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-computer-screen-with-code-on-it-math-latex-code-comment.jpg","type":"image\/jpeg"}],"author":"Ethan Martinez","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ethan Martinez","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/","url":"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/","name":"Can You Add Comments to MathJax? Explained - ThumbTube","isPartOf":{"@id":"https:\/\/thumbtube.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/#primaryimage"},"image":{"@id":"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/#primaryimage"},"thumbnailUrl":"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-computer-screen-with-code-on-it-math-latex-code-comment.jpg","datePublished":"2025-11-27T15:03:33+00:00","dateModified":"2025-11-27T15:18:36+00:00","author":{"@id":"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/4fe17b14e96eaa537d646cb9ae441583"},"breadcrumb":{"@id":"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/#primaryimage","url":"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-computer-screen-with-code-on-it-math-latex-code-comment.jpg","contentUrl":"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/11\/a-close-up-of-a-computer-screen-with-code-on-it-math-latex-code-comment.jpg","width":1080,"height":810},{"@type":"BreadcrumbList","@id":"https:\/\/thumbtube.com\/blog\/can-you-add-comments-to-mathjax-explained\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thumbtube.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Can You Add Comments to MathJax? Explained"}]},{"@type":"WebSite","@id":"https:\/\/thumbtube.com\/blog\/#website","url":"https:\/\/thumbtube.com\/blog\/","name":"ThumbTube","description":"Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thumbtube.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/4fe17b14e96eaa537d646cb9ae441583","name":"Ethan Martinez","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/993fbfe1588a77db452e8ea37ed7fcba?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/993fbfe1588a77db452e8ea37ed7fcba?s=96&d=mm&r=g","caption":"Ethan Martinez"},"description":"I'm Ethan Martinez, a tech writer focused on cloud computing and SaaS solutions. I provide insights into the latest cloud technologies and services to keep readers informed.","url":"https:\/\/thumbtube.com\/blog\/author\/ethan\/"}]}},"_links":{"self":[{"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/posts\/5597"}],"collection":[{"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/users\/78"}],"replies":[{"embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/comments?post=5597"}],"version-history":[{"count":1,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/posts\/5597\/revisions"}],"predecessor-version":[{"id":5610,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/posts\/5597\/revisions\/5610"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/media\/5599"}],"wp:attachment":[{"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/media?parent=5597"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/categories?post=5597"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/tags?post=5597"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}