{"id":94,"date":"2024-04-30T00:16:09","date_gmt":"2024-04-30T00:16:09","guid":{"rendered":"https:\/\/anon.tools\/public\/blog\/html-code-editor\/"},"modified":"2024-04-30T00:16:09","modified_gmt":"2024-04-30T00:16:09","slug":"html-code-editor","status":"publish","type":"post","link":"https:\/\/anon.tools\/public\/blog\/html-code-editor\/","title":{"rendered":"HTML Code Editor"},"content":{"rendered":"<div class=\"toc\">\n<h2>Table of Contents<\/h2>\n<ul>\n<li><a href=\"#Adding-the-HTML-Block\">Adding the HTML Block<\/a><\/li>\n<li><a href=\"#Converting-HTML-Block-to-Editor-Format\">Converting HTML Block to Editor Format<\/a><\/li>\n<li><a href=\"#Example-Uses-of-HTML-Block\">Example Uses of HTML Block<\/a>\n<ul>\n<li><a href=\"#Embedding-a-Video-From-Other-Hosts\">Embedding a Video From Other Hosts<\/a><\/li>\n<li><a href=\"#Adding-a-Call-to-Action-Link-to-Open-Docs-Beacon\">Adding a Call to Action Link to Open Docs Beacon<\/a><\/li>\n<li><a href=\"#Using-Definition-Lists-for-Detailed-Steps\">Using Definition Lists for Detailed Steps<\/a><\/li>\n<\/ul>\n<\/li>\n<li><a href=\"#fullArticle-dt\">fullArticle dt {<\/a>\n<ul>\n<li><a href=\"#Using-Additional-CSS-Styles\">Using Additional CSS Styles<\/a>\n<ul>\n<li><a href=\"#Built-in-Classes\">Built-in Classes<\/a><\/li>\n<li><a href=\"#Custom-Classes\">Custom Classes<\/a><\/li>\n<\/ul>\n<\/li>\n<li><a href=\"#Conclusion\">Conclusion<\/a><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/div>\n<p>The HTML Code Editor is a powerful tool in our Docs editor that allows you to create custom looks and styles for your articles using HTML. While our editor provides a user-friendly interface for creating beautiful articles without needing to work with HTML, we understand that some users prefer the flexibility and control that HTML offers. With the HTML block tool, you can bring your own HTML expertise and get creative with your article designs.<\/p>\n<h2 id=\"Adding-the-HTML-Block\">Adding the HTML Block<\/h2>\n<p>To add the HTML block to your article, follow these steps:<\/p>\n<ol>\n<li>Click the &#8220;+&#8221; (plus sign) to the left of a new line in the editor or type &#8220;\/&#8221; (forward slash) to open the shortcut menu.<\/li>\n<li>Choose the &#8220;HTML block&#8221; option from the menu.<\/li>\n<\/ol>\n<p>The HTML block accepts any valid HTML5 tags and event handlers that can be used within the <code>&lt;body&gt;<\/code> of an HTML document. However, please note that the <code>&lt;script&gt;<\/code> and <code>&lt;style&gt;<\/code> tags are not supported within the HTML block.<\/p>\n<p>If you need to include <code>&lt;script&gt;<\/code> or <code>&lt;style&gt;<\/code> elements in the <code>&lt;head&gt;<\/code> section across your Docs site, refer to the &#8220;Customize Your Docs Site&#8221; documentation for more information.<\/p>\n<h2 id=\"Converting-HTML-Block-to-Editor-Format\">Converting HTML Block to Editor Format<\/h2>\n<p>If you want to convert your HTML block into regular editor text, you can do so by following these steps:<\/p>\n<ol>\n<li>Click the kebab menu (three dots menu) in the top-right corner of the HTML block.<\/li>\n<li>Select the &#8220;Convert to editor format&#8221; option from the menu.<\/li>\n<\/ol>\n<p>After converting to editor format, only the customizations supported directly by the Docs editor will remain. Any HTML classes, inline CSS, or other customizations will be removed.<\/p>\n<h2 id=\"Example-Uses-of-HTML-Block\">Example Uses of HTML Block<\/h2>\n<p>Here are a few examples of what you can do with the HTML block. While these examples cover some common use cases, please note that you are not limited to these options.<\/p>\n<h3 id=\"Embedding-a-Video-From-Other-Hosts\">Embedding a Video From Other Hosts<\/h3>\n<p>If you want to embed a video from a host other than YouTube, Vimeo, Loom, CloudApp, or Wistia, you can use the HTML block. Simply paste the embed code provided by your video hosting platform into the HTML block.<\/p>\n<p>Here&#8217;s an example of an embed code you might get from hosting your videos on Kapwing:<\/p>\n<p>&#8220;`html<\/p>\n<div style=\"height: 533.39px;width: 300.00px;position:relative\">\n<\/div>\n<p style=\"font-size: 12px;text-align: right\">Video edited on <a href=\"https:\/\/www.kapwing.com\/video-editor\">Kapwing<\/a><\/p>\n<p>&#8220;`<\/p>\n<p>You may need to add CSS to your video embeds to ensure they look good across all screen sizes and devices. To do this, wrap the video embed with the classes <code>video<\/code> and <code>widescreen<\/code>:<\/p>\n<p>&#8220;`html<\/p>\n<section class=\"video widescreen\">\n  <!-- VIDEO EMBED CODE GOES HERE --><br \/>\n<\/section>\n<p>&#8220;`<\/p>\n<p>If you encounter any issues with embedding your video, feel free to contact us with a link to the article that&#8217;s giving you trouble.<\/p>\n<h3 id=\"Adding-a-Call-to-Action-Link-to-Open-Docs-Beacon\">Adding a Call to Action Link to Open Docs Beacon<\/h3>\n<p>To add a call-to-action link that opens your Docs Beacon, you can use the HTML block. This requires specific code with event handlers to ensure the link works correctly on your Docs site and any Beacons that display your articles.<\/p>\n<p>Here&#8217;s a sample HTML code for a CTA link:<\/p>\n<p>&#8220;`html<\/p>\n<p>If you encounter any issues with placing an order, <a href=\"#\">reach out to our team<\/a> and we&#8217;ll be happy to help!<\/p>\n<p>&#8220;`<\/p>\n<h3 id=\"Using-Definition-Lists-for-Detailed-Steps\">Using Definition Lists for Detailed Steps<\/h3>\n<p>To create detailed step-by-step instruction lists, you can use the definition list element <code>&lt;dl&gt;<\/code>. This element consists of a term <code>&lt;dt&gt;<\/code> and a description <code>&lt;dd&gt;<\/code>.<\/p>\n<p>Here&#8217;s an example of using a definition list for detailed steps:<\/p>\n<p>&#8220;`html<\/p>\n<dl>\n<dt>1<\/dt>\n<dd>Go to the Winchester.<\/dd>\n<dt>2<\/dt>\n<dd>Have a nice cold pint.<\/dd>\n<dt>3<\/dt>\n<dd>Wait for this to all blow over.<\/dd>\n<\/dl>\n<p>&#8220;`<\/p>\n<p>By default, the background color behind the <code>&lt;dt&gt;<\/code> elements in a definition list is grey. If you want to change this color, you can use the following CSS selector in your custom CSS:<\/p>\n<p>&#8220;`css<\/p>\n<h1 id=\"fullArticle-dt\">fullArticle dt {<\/h1>\n<p>background: yourcolorchoice;<br \/>\n}<br \/>\n&#8220;`<\/p>\n<h3 id=\"Using-Additional-CSS-Styles\">Using Additional CSS Styles<\/h3>\n<p>In the HTML block, you can apply additional CSS styles to elements using either built-in classes provided by Docs or your own custom classes. Here are some examples:<\/p>\n<h4 id=\"Built-in-Classes\">Built-in Classes<\/h4>\n<p>Docs provides some built-in classes that you can use in the HTML block to style elements. Note that if you have applied custom CSS, these classes may work differently.<\/p>\n<ul>\n<li><strong>Image lightbox<\/strong>: You can use the class <code>lightbox<\/code> to create an image that expands to full size when clicked. Wrap the image with a <code>&lt;figure&gt;<\/code> element and add a <code>&lt;figcaption&gt;<\/code> to provide a caption.<\/li>\n<\/ul>\n<p>&#8220;`html<br \/>\n<\/p>\n<figure>\n    <a href=\"https:\/\/yourfilelocation.com\/image.png\" class=\"lightbox\"><br \/>\n      <img decoding=\"async\" src=\"https:\/\/yourfilelocation.com\/image.png\" alt=\"\"><br \/>\n    <\/a><figcaption>Click to see a larger version<\/figcaption><\/figure>\n<\/p>\n<p>&#8220;`<\/p>\n<ul>\n<li><strong>Remove image border<\/strong>: By default, images in Docs have a rounded border. To remove the border, add the class <code>noBdr<\/code> to the <code>&lt;img&gt;<\/code> tag.<\/li>\n<\/ul>\n<p><code>html<br \/>\n  &lt;img src=\"https:\/\/yourfilelocation.com\/image.png\" class=\"noBdr\" alt=\"Image of a Banana\"&gt;<\/code><\/p>\n<h4 id=\"Custom-Classes\">Custom Classes<\/h4>\n<p>If you have added custom CSS to customize your Docs site, you can apply your own custom classes in the HTML block to style elements.<\/p>\n<p>For more information on adding custom CSS to Docs, refer to the &#8220;Customize Your Docs Site: Use CSS&#8221; documentation.<\/p>\n<h2 id=\"Conclusion\">Conclusion<\/h2>\n<p>The HTML Code Editor in our Docs editor allows you to leverage your HTML expertise to create custom looks and styles for your articles. By using the HTML block, you can incorporate HTML elements, embed videos, add call-to-action links, create detailed step-by-step instructions, and apply additional CSS styles. Experiment with the HTML block to bring your own creative ideas to your articles and make them truly unique.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>HTML Code Editor: Create and edit HTML code effortlessly with our user-friendly editor. Perfect for beginners and experienced developers alike.<\/p>\n","protected":false},"author":1,"featured_media":95,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[60],"tags":[59],"class_list":["post-94","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-html-code-editor","tag-html-code-editor-user-friendly-developers"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.3 (Yoast SEO v23.4) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>HTML Code Editor<\/title>\n<meta name=\"description\" content=\"HTML Code Editor: Create and edit HTML code effortlessly with our user-friendly editor. Perfect for beginners and experienced developers alike.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/anon.tools\/public\/blog\/html-code-editor\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"HTML Code Editor\" \/>\n<meta property=\"og:description\" content=\"HTML Code Editor: Create and edit HTML code effortlessly with our user-friendly editor. Perfect for beginners and experienced developers alike.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/anon.tools\/public\/blog\/html-code-editor\/\" \/>\n<meta property=\"og:site_name\" content=\"Anon Tools Blog\" \/>\n<meta property=\"article:published_time\" content=\"2024-04-30T00:16:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/anon.tools\/public\/blog\/wp-content\/uploads\/2024\/04\/html-code-editor-1714435746.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"942\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"wp_An0nBLoG\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"wp_An0nBLoG\" \/>\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\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\/\/anon.tools\/public\/blog\/html-code-editor\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/anon.tools\/public\/blog\/html-code-editor\/\"},\"author\":{\"name\":\"wp_An0nBLoG\",\"@id\":\"https:\/\/anon.tools\/public\/blog\/#\/schema\/person\/c08bec5f31609e1ba68526ed2797c2a5\"},\"headline\":\"HTML Code Editor\",\"datePublished\":\"2024-04-30T00:16:09+00:00\",\"dateModified\":\"2024-04-30T00:16:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/anon.tools\/public\/blog\/html-code-editor\/\"},\"wordCount\":888,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/anon.tools\/public\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/anon.tools\/public\/blog\/html-code-editor\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/anon.tools\/public\/blog\/wp-content\/uploads\/2024\/04\/html-code-editor-1714435746.webp\",\"keywords\":[\"HTML Code Editor user-friendly developers\"],\"articleSection\":[\"HTML Code Editor\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/anon.tools\/public\/blog\/html-code-editor\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/anon.tools\/public\/blog\/html-code-editor\/\",\"url\":\"https:\/\/anon.tools\/public\/blog\/html-code-editor\/\",\"name\":\"HTML Code Editor\",\"isPartOf\":{\"@id\":\"https:\/\/anon.tools\/public\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/anon.tools\/public\/blog\/html-code-editor\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/anon.tools\/public\/blog\/html-code-editor\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/anon.tools\/public\/blog\/wp-content\/uploads\/2024\/04\/html-code-editor-1714435746.webp\",\"datePublished\":\"2024-04-30T00:16:09+00:00\",\"dateModified\":\"2024-04-30T00:16:09+00:00\",\"description\":\"HTML Code Editor: Create and edit HTML code effortlessly with our user-friendly editor. Perfect for beginners and experienced developers alike.\",\"breadcrumb\":{\"@id\":\"https:\/\/anon.tools\/public\/blog\/html-code-editor\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/anon.tools\/public\/blog\/html-code-editor\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/anon.tools\/public\/blog\/html-code-editor\/#primaryimage\",\"url\":\"https:\/\/anon.tools\/public\/blog\/wp-content\/uploads\/2024\/04\/html-code-editor-1714435746.webp\",\"contentUrl\":\"https:\/\/anon.tools\/public\/blog\/wp-content\/uploads\/2024\/04\/html-code-editor-1714435746.webp\",\"width\":942,\"height\":628,\"caption\":\"HTML Code Editor\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/anon.tools\/public\/blog\/html-code-editor\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/anon.tools\/public\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML Code Editor\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/anon.tools\/public\/blog\/#website\",\"url\":\"https:\/\/anon.tools\/public\/blog\/\",\"name\":\"Anon Tools Blog\",\"description\":\"Digital Tools, Guarded Secrets\",\"publisher\":{\"@id\":\"https:\/\/anon.tools\/public\/blog\/#organization\"},\"alternateName\":\"AnonTools Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/anon.tools\/public\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/anon.tools\/public\/blog\/#organization\",\"name\":\"Anon Tools Blog\",\"url\":\"https:\/\/anon.tools\/public\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/anon.tools\/public\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/anon.tools\/public\/blog\/wp-content\/uploads\/2024\/04\/cropped-anon.png\",\"contentUrl\":\"https:\/\/anon.tools\/public\/blog\/wp-content\/uploads\/2024\/04\/cropped-anon.png\",\"width\":512,\"height\":512,\"caption\":\"Anon Tools Blog\"},\"image\":{\"@id\":\"https:\/\/anon.tools\/public\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/anon.tools\/public\/blog\/#\/schema\/person\/c08bec5f31609e1ba68526ed2797c2a5\",\"name\":\"wp_An0nBLoG\",\"sameAs\":[\"https:\/\/anon.tools\/public\/blog\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"HTML Code Editor","description":"HTML Code Editor: Create and edit HTML code effortlessly with our user-friendly editor. Perfect for beginners and experienced developers alike.","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:\/\/anon.tools\/public\/blog\/html-code-editor\/","og_locale":"en_US","og_type":"article","og_title":"HTML Code Editor","og_description":"HTML Code Editor: Create and edit HTML code effortlessly with our user-friendly editor. Perfect for beginners and experienced developers alike.","og_url":"https:\/\/anon.tools\/public\/blog\/html-code-editor\/","og_site_name":"Anon Tools Blog","article_published_time":"2024-04-30T00:16:09+00:00","og_image":[{"width":942,"height":628,"url":"https:\/\/anon.tools\/public\/blog\/wp-content\/uploads\/2024\/04\/html-code-editor-1714435746.webp","type":"image\/webp"}],"author":"wp_An0nBLoG","twitter_card":"summary_large_image","twitter_misc":{"Written by":"wp_An0nBLoG","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/anon.tools\/public\/blog\/html-code-editor\/#article","isPartOf":{"@id":"https:\/\/anon.tools\/public\/blog\/html-code-editor\/"},"author":{"name":"wp_An0nBLoG","@id":"https:\/\/anon.tools\/public\/blog\/#\/schema\/person\/c08bec5f31609e1ba68526ed2797c2a5"},"headline":"HTML Code Editor","datePublished":"2024-04-30T00:16:09+00:00","dateModified":"2024-04-30T00:16:09+00:00","mainEntityOfPage":{"@id":"https:\/\/anon.tools\/public\/blog\/html-code-editor\/"},"wordCount":888,"commentCount":0,"publisher":{"@id":"https:\/\/anon.tools\/public\/blog\/#organization"},"image":{"@id":"https:\/\/anon.tools\/public\/blog\/html-code-editor\/#primaryimage"},"thumbnailUrl":"https:\/\/anon.tools\/public\/blog\/wp-content\/uploads\/2024\/04\/html-code-editor-1714435746.webp","keywords":["HTML Code Editor user-friendly developers"],"articleSection":["HTML Code Editor"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/anon.tools\/public\/blog\/html-code-editor\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/anon.tools\/public\/blog\/html-code-editor\/","url":"https:\/\/anon.tools\/public\/blog\/html-code-editor\/","name":"HTML Code Editor","isPartOf":{"@id":"https:\/\/anon.tools\/public\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/anon.tools\/public\/blog\/html-code-editor\/#primaryimage"},"image":{"@id":"https:\/\/anon.tools\/public\/blog\/html-code-editor\/#primaryimage"},"thumbnailUrl":"https:\/\/anon.tools\/public\/blog\/wp-content\/uploads\/2024\/04\/html-code-editor-1714435746.webp","datePublished":"2024-04-30T00:16:09+00:00","dateModified":"2024-04-30T00:16:09+00:00","description":"HTML Code Editor: Create and edit HTML code effortlessly with our user-friendly editor. Perfect for beginners and experienced developers alike.","breadcrumb":{"@id":"https:\/\/anon.tools\/public\/blog\/html-code-editor\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/anon.tools\/public\/blog\/html-code-editor\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/anon.tools\/public\/blog\/html-code-editor\/#primaryimage","url":"https:\/\/anon.tools\/public\/blog\/wp-content\/uploads\/2024\/04\/html-code-editor-1714435746.webp","contentUrl":"https:\/\/anon.tools\/public\/blog\/wp-content\/uploads\/2024\/04\/html-code-editor-1714435746.webp","width":942,"height":628,"caption":"HTML Code Editor"},{"@type":"BreadcrumbList","@id":"https:\/\/anon.tools\/public\/blog\/html-code-editor\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/anon.tools\/public\/blog\/"},{"@type":"ListItem","position":2,"name":"HTML Code Editor"}]},{"@type":"WebSite","@id":"https:\/\/anon.tools\/public\/blog\/#website","url":"https:\/\/anon.tools\/public\/blog\/","name":"Anon Tools Blog","description":"Digital Tools, Guarded Secrets","publisher":{"@id":"https:\/\/anon.tools\/public\/blog\/#organization"},"alternateName":"AnonTools Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/anon.tools\/public\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/anon.tools\/public\/blog\/#organization","name":"Anon Tools Blog","url":"https:\/\/anon.tools\/public\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/anon.tools\/public\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/anon.tools\/public\/blog\/wp-content\/uploads\/2024\/04\/cropped-anon.png","contentUrl":"https:\/\/anon.tools\/public\/blog\/wp-content\/uploads\/2024\/04\/cropped-anon.png","width":512,"height":512,"caption":"Anon Tools Blog"},"image":{"@id":"https:\/\/anon.tools\/public\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/anon.tools\/public\/blog\/#\/schema\/person\/c08bec5f31609e1ba68526ed2797c2a5","name":"wp_An0nBLoG","sameAs":["https:\/\/anon.tools\/public\/blog"]}]}},"_links":{"self":[{"href":"https:\/\/anon.tools\/public\/blog\/wp-json\/wp\/v2\/posts\/94","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/anon.tools\/public\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/anon.tools\/public\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/anon.tools\/public\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/anon.tools\/public\/blog\/wp-json\/wp\/v2\/comments?post=94"}],"version-history":[{"count":0,"href":"https:\/\/anon.tools\/public\/blog\/wp-json\/wp\/v2\/posts\/94\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/anon.tools\/public\/blog\/wp-json\/wp\/v2\/media\/95"}],"wp:attachment":[{"href":"https:\/\/anon.tools\/public\/blog\/wp-json\/wp\/v2\/media?parent=94"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/anon.tools\/public\/blog\/wp-json\/wp\/v2\/categories?post=94"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/anon.tools\/public\/blog\/wp-json\/wp\/v2\/tags?post=94"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}