{"id":4099,"date":"2021-03-17T12:21:18","date_gmt":"2021-03-17T12:21:18","guid":{"rendered":"https:\/\/pickedshares.com\/?p=4099"},"modified":"2023-04-01T12:21:39","modified_gmt":"2023-04-01T12:21:39","slug":"tikz-online-editor","status":"publish","type":"post","link":"https:\/\/pickedshares.com\/en\/tikz-online-editor\/","title":{"rendered":"Tikz online editor"},"content":{"rendered":"\n<p>Information <a href=\"#instructions-tikz-wysiwyg\">how to use this can be found if you scroll down<\/a>.<\/p>\n\n\n\n<!--noptimize-->\n\n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/js-base64@3.6.1\/base64.min.js\"><\/script>\n<div id=\"tikz_input\" class=\"tikz_div container\">\n<label for=\"tikz_input_text\">Source code<\/label>\n<textarea id=\"tikz_input_text\" rows=\"10\" cols=\"80\"><\/textarea>\n<div style=\"display:grid;grid-template-columns: 25% 25% 25% 25%;grid-row-gap:0.3rem;\">\n<div><\/div>\n<div><\/div>\n<div style=\"grid-column: 3 \/ span 2\"><span>Examples<\/span><\/div>\n<div><input type=\"button\" value=\"Show\" id=\"banz\"><\/div>\n<div><\/div>\n<div><input style=\"width:95%;\" type=\"button\" value=\"FAST-Diagram\" id=\"example1\"><\/div>\n<div><input style=\"width:95%;\" type=\"button\" value=\"Sinus-Plot\" id=\"example2\"><\/div>\n<div style=\"grid-column: 3;\"><input style=\"width:95%;\" type=\"button\" value=\"Trigonometrics\" id=\"example3\"><\/div>\n<\/div>\n<\/div>\n<div id=\"tikz_output\" style=\"padding-top:1rem;\" class=\"tikz_div container\">\n<iframe id=\"subpage\" style=\"width:800px;height:600px;\"><\/iframe>\n<\/div>\n<script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/3.5.1\/jquery.min.js\"><\/script>\n<script>\n$('document').ready(function(){\n\nfunction replaceumlauts(value){\n  while (value.indexOf('\u00fc') != -1){\n    value = value.replace('\u00fc','ue');\n  }\n  while (value.indexOf('\u00e4') != -1){\n    value = value.replace('\u00e4','ae');\n  }\n  while (value.indexOf('\u00f6') != -1){\n    value = value.replace('\u00f6','oe');\n  }\n  while (value.indexOf('\u00dc') != -1){\n    value = value.replace('\u00dc','Ue');\n  }\n  while (value.indexOf('\u00c4') != -1){\n    value = value.replace('\u00c4','Ae');\n  }\n  while (value.indexOf('\u00d6') != -1){\n    value = value.replace('\u00d6','Oe');\n  }\n  while (value.indexOf('\u00df') != -1){\n    value = value.replace('\u00df','ss');\n  }\n  return value;\n}\n\n\n\n$('#banz').click(function(){\n\ntikzcontent = replaceumlauts($('#tikz_input_text').val());\n\npagecontent = '';\n\npagecontent = '<html><head><meta http-equiv=\"content-type\" content=\"text\/html; charset=UTF-8\"\\\/><link rel=\"stylesheet\" type=\"text\/css\" href=\"https:\/\/pickedshares.com\/wp-content\/themes\/gp_child\/custom\/tikz\/fonts.css\"><script src=\"https:\/\/pickedshares.com\/wp-content\/themes\/gp_child\/custom\/tikz\/tikzjax.js\"><\\\/script><\\\/head><body><div><script type=\"text\/tikz\">'+tikzcontent+'<\\\/script><\\\/div><\\\/body><\\\/html>';\n\n\/\/console.log(pagecontent);\n\n\/\/ iframebody = '<div><script type=\"text\/tikz\">'+tikzcontent+'<\\\/script><\\\/div>';\n\n\/\/ iframebody = replaceumlauts(iframebody);\n\/\/ pagecontent = replaceumlauts(pagecontent);\n\n\/\/ pagecontent = unescape(encodeURIComponent(pagecontent));\n\ntry{\n\/\/ Alt. 2: Document write (\"old school\")\nvar doc = document.querySelector('#subpage').contentWindow.document;\ndoc.open();\ndoc.write(pagecontent);\ndoc.close();\n}\ncatch{}\nfinally{}\n\n});\n});\n\n<\/script>\n<script src=\"https:\/\/pickedshares.com\/wp-content\/themes\/gp_child\/custom\/tikz\/examples_en.js\"><\/script>\n<!--\/noptimize-->\n\n\n\n<p class=\"has-small-font-size\">This page uses the <a href=\"https:\/\/tikzjax.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Tikzjax library<\/a>.<\/p>\n\n\n\n<p class=\"has-small-font-size\">Note for Safari users: Unfortunately, using this editor can lead to unwanted results. We recommend using Chrome, Edge or Firefox.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"instructions-tikz-wysiwyg\">What's this?<\/h2>\n\n\n\n<p>When writing documents in latex, the user usually does not have a live view (What You See Is What You Get - WYSIWG). While this is not a major obstacle in normal text, it is more of a challenge when creating images using the Tikz package. To see whether you have achieved the desired result with your code, you have to compile the document and usually open it as a PDF. Depending on the frequency, this can be very disruptive and hinder the creative flow of work.<\/p>\n\n\n\n<p>This is why this page offers a lean tool for quickly creating previews for images that are created in latex using the Tikz package.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Application example<\/h2>\n\n\n\n<p>The source code for the respective Tikzpicture must be entered in the text field. Then the button \"Show\" is clicked. The calculation of the figure can take a few seconds. The following example shows a simplified FAST diagram.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">The source code<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>\\tikzstyle{process} = &#91;rectangle, minimum width=1cm, minimum height=1cm, text centered, draw=black, fill=orange!30]\n\\tikzstyle{line} = &#91;thick,-,&gt;=stealth]\n\\tikzstyle{arrow} = &#91;thick,-&gt;,&gt;=stealth]\n\n\\begin{tikzpicture}&#91;node distance=1.5cm and 1cm]\n\n\\node (text1) &#91;xshift=3cm] {How is it done?};\n\\node (text2) &#91;xshift=18 cm] {Why is it done?};\n\n\\draw &#91;arrow] (1cm,-0.5cm) -- (5cm,-0.5cm);\n\\draw &#91;arrow] (20cm,-0.5cm) -- (17cm,-0.5cm);\n\n\\node (pro1) &#91;process,below of=text1, xshift=-1cm] {Output};\n\\node (pro2) &#91;process,below of=text1, xshift=3 cm] {Main function (1)};\n\\node (pro3) &#91;process,below of=text1, xshift=7 cm] {Dependent function (1.1)};\n\\node (pro4) &#91;process, below of=pro3] {Nebenfunktion (1.2)};\n\\node (pro5) &#91;process, below of=pro3, xshift=4 cm] {Dependent function (1.2.1)};\n\\node (pro6) &#91;process,below of=text1, xshift=16 cm] {Input};\n\\node (pro7) &#91;process, below of=pro4, xshift=-4 cm] {Supporting function (2)};\n\\node (pro8) &#91;process, below of=pro4] {Dependent function (2.1)};\n\\node (pro9) &#91;process, below of=pro7] {Supporting function (3)};\n\n\\draw &#91;line] (pro1) -- (pro2);\n\\draw &#91;line] (pro2) -- (pro3);\n\\draw &#91;line] (pro3) -- (pro4);\n\\draw &#91;line] (pro1) -- (pro2);\n\\draw &#91;line] (pro4) -- (pro5);\n\\draw &#91;line] (pro3) -- (pro6);\n\\draw &#91;line] (pro2) -- (pro7);\n\\draw &#91;line] (pro7) -- (pro8);\n\\draw &#91;line] (pro7) -- (pro9);\n\n\\end{tikzpicture}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">The result<\/h3>\n\n\n\n<p>After clicking the \"Show\"-Button the following diagram should appear:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"741\" height=\"317\" src=\"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/03\/tikz_example_fast.png\" alt=\"\" class=\"wp-image-4101\" srcset=\"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/03\/tikz_example_fast.png 741w, https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/03\/tikz_example_fast-300x128.png 300w\" sizes=\"auto, (max-width: 741px) 100vw, 741px\" \/><figcaption class=\"wp-element-caption\">Example FAST-Diagram<\/figcaption><\/figure>\n","protected":false},"excerpt":{"rendered":"<p> ... <a title=\"Tikz online editor\" class=\"read-more\" href=\"https:\/\/pickedshares.com\/en\/tikz-online-editor\/\" aria-label=\"Read more about Tikz online editor\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":4101,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[79,54],"tags":[],"class_list":["post-4099","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-engineering-en","category-tools-en","infinite-scroll-item","masonry-post","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Tikz online editor &#8226; pickedshares Engineering Tools<\/title>\n<meta name=\"description\" content=\"A lean online editor tool to develop your tikz-Images. Just put in your source code and get the image in WYSIWYG-speed.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pickedshares.com\/en\/tikz-online-editor\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tikz online editor &#8226; pickedshares Engineering Tools\" \/>\n<meta property=\"og:description\" content=\"A lean online editor tool to develop your tikz-Images. Just put in your source code and get the image in WYSIWYG-speed.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pickedshares.com\/en\/tikz-online-editor\/\" \/>\n<meta property=\"og:site_name\" content=\"pickedshares\" \/>\n<meta property=\"article:published_time\" content=\"2021-03-17T12:21:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-01T12:21:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/03\/tikz_example_fast.png\" \/>\n\t<meta property=\"og:image:width\" content=\"741\" \/>\n\t<meta property=\"og:image:height\" content=\"317\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pickedshares\" \/>\n<meta name=\"twitter:site\" content=\"@pickedshares\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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:\\\/\\\/pickedshares.com\\\/en\\\/tikz-online-editor\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/tikz-online-editor\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#\\\/schema\\\/person\\\/6c617a6a61de9623da53f74a56810033\"},\"headline\":\"Tikz online editor\",\"datePublished\":\"2021-03-17T12:21:18+00:00\",\"dateModified\":\"2023-04-01T12:21:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/tikz-online-editor\\\/\"},\"wordCount\":215,\"publisher\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/tikz-online-editor\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pickedshares.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/tikz_example_fast.png\",\"articleSection\":[\"Engineering\",\"Tools\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/tikz-online-editor\\\/\",\"url\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/tikz-online-editor\\\/\",\"name\":\"Tikz online editor &#8226; pickedshares Engineering Tools\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/tikz-online-editor\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/tikz-online-editor\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pickedshares.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/tikz_example_fast.png\",\"datePublished\":\"2021-03-17T12:21:18+00:00\",\"dateModified\":\"2023-04-01T12:21:39+00:00\",\"description\":\"A lean online editor tool to develop your tikz-Images. Just put in your source code and get the image in WYSIWYG-speed.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/tikz-online-editor\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pickedshares.com\\\/en\\\/tikz-online-editor\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/tikz-online-editor\\\/#primaryimage\",\"url\":\"https:\\\/\\\/pickedshares.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/tikz_example_fast.png\",\"contentUrl\":\"https:\\\/\\\/pickedshares.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/tikz_example_fast.png\",\"width\":741,\"height\":317},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/tikz-online-editor\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Start\",\"item\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Tools\",\"item\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/category\\\/tools-en\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Tikz online editor\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/\",\"name\":\"pickedshares\",\"description\":\"Engineering Design, Project Management, Tools and Exercises\",\"publisher\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#organization\",\"name\":\"pickedshares.com\",\"url\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"pickedshares.com\"},\"image\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/pickedshares\",\"https:\\\/\\\/www.instagram.com\\\/pickedshares\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCSh8qo2-6dhtbZqSLStt3Rg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#\\\/schema\\\/person\\\/6c617a6a61de9623da53f74a56810033\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/948d17e3c131a29d2f00c792d96bb1899342a69d8ccda0673ef9089a0988b3bd?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/948d17e3c131a29d2f00c792d96bb1899342a69d8ccda0673ef9089a0988b3bd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/948d17e3c131a29d2f00c792d96bb1899342a69d8ccda0673ef9089a0988b3bd?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\\\/\\\/pickedshares.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Tikz online editor &#8226; pickedshares Engineering Tools","description":"A lean online editor tool to develop your tikz-Images. Just put in your source code and get the image in WYSIWYG-speed.","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:\/\/pickedshares.com\/en\/tikz-online-editor\/","og_locale":"en_US","og_type":"article","og_title":"Tikz online editor &#8226; pickedshares Engineering Tools","og_description":"A lean online editor tool to develop your tikz-Images. Just put in your source code and get the image in WYSIWYG-speed.","og_url":"https:\/\/pickedshares.com\/en\/tikz-online-editor\/","og_site_name":"pickedshares","article_published_time":"2021-03-17T12:21:18+00:00","article_modified_time":"2023-04-01T12:21:39+00:00","og_image":[{"width":741,"height":317,"url":"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/03\/tikz_example_fast.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pickedshares","twitter_site":"@pickedshares","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pickedshares.com\/en\/tikz-online-editor\/#article","isPartOf":{"@id":"https:\/\/pickedshares.com\/en\/tikz-online-editor\/"},"author":{"name":"admin","@id":"https:\/\/pickedshares.com\/en\/#\/schema\/person\/6c617a6a61de9623da53f74a56810033"},"headline":"Tikz online editor","datePublished":"2021-03-17T12:21:18+00:00","dateModified":"2023-04-01T12:21:39+00:00","mainEntityOfPage":{"@id":"https:\/\/pickedshares.com\/en\/tikz-online-editor\/"},"wordCount":215,"publisher":{"@id":"https:\/\/pickedshares.com\/en\/#organization"},"image":{"@id":"https:\/\/pickedshares.com\/en\/tikz-online-editor\/#primaryimage"},"thumbnailUrl":"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/03\/tikz_example_fast.png","articleSection":["Engineering","Tools"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/pickedshares.com\/en\/tikz-online-editor\/","url":"https:\/\/pickedshares.com\/en\/tikz-online-editor\/","name":"Tikz online editor &#8226; pickedshares Engineering Tools","isPartOf":{"@id":"https:\/\/pickedshares.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pickedshares.com\/en\/tikz-online-editor\/#primaryimage"},"image":{"@id":"https:\/\/pickedshares.com\/en\/tikz-online-editor\/#primaryimage"},"thumbnailUrl":"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/03\/tikz_example_fast.png","datePublished":"2021-03-17T12:21:18+00:00","dateModified":"2023-04-01T12:21:39+00:00","description":"A lean online editor tool to develop your tikz-Images. Just put in your source code and get the image in WYSIWYG-speed.","breadcrumb":{"@id":"https:\/\/pickedshares.com\/en\/tikz-online-editor\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pickedshares.com\/en\/tikz-online-editor\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pickedshares.com\/en\/tikz-online-editor\/#primaryimage","url":"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/03\/tikz_example_fast.png","contentUrl":"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/03\/tikz_example_fast.png","width":741,"height":317},{"@type":"BreadcrumbList","@id":"https:\/\/pickedshares.com\/en\/tikz-online-editor\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Start","item":"https:\/\/pickedshares.com\/en\/"},{"@type":"ListItem","position":2,"name":"Tools","item":"https:\/\/pickedshares.com\/en\/category\/tools-en\/"},{"@type":"ListItem","position":3,"name":"Tikz online editor"}]},{"@type":"WebSite","@id":"https:\/\/pickedshares.com\/en\/#website","url":"https:\/\/pickedshares.com\/en\/","name":"pickedshares","description":"Engineering Design, Project Management, Tools and Exercises","publisher":{"@id":"https:\/\/pickedshares.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pickedshares.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pickedshares.com\/en\/#organization","name":"pickedshares.com","url":"https:\/\/pickedshares.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pickedshares.com\/en\/#\/schema\/logo\/image\/","url":"","contentUrl":"","caption":"pickedshares.com"},"image":{"@id":"https:\/\/pickedshares.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/pickedshares","https:\/\/www.instagram.com\/pickedshares\/","https:\/\/www.youtube.com\/channel\/UCSh8qo2-6dhtbZqSLStt3Rg"]},{"@type":"Person","@id":"https:\/\/pickedshares.com\/en\/#\/schema\/person\/6c617a6a61de9623da53f74a56810033","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/948d17e3c131a29d2f00c792d96bb1899342a69d8ccda0673ef9089a0988b3bd?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/948d17e3c131a29d2f00c792d96bb1899342a69d8ccda0673ef9089a0988b3bd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/948d17e3c131a29d2f00c792d96bb1899342a69d8ccda0673ef9089a0988b3bd?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/pickedshares.com"]}]}},"_links":{"self":[{"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/posts\/4099","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/comments?post=4099"}],"version-history":[{"count":20,"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/posts\/4099\/revisions"}],"predecessor-version":[{"id":6495,"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/posts\/4099\/revisions\/6495"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/media\/4101"}],"wp:attachment":[{"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/media?parent=4099"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/categories?post=4099"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/tags?post=4099"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}