{"id":2854,"date":"2018-06-15T13:15:26","date_gmt":"2018-06-15T18:15:26","guid":{"rendered":"http:\/\/www.logikalsolutions.com\/wordpress\/?p=2854"},"modified":"2018-06-15T13:15:26","modified_gmt":"2018-06-15T18:15:26","slug":"jed-golang-support","status":"publish","type":"post","link":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/jed-golang-support\/","title":{"rendered":"JED &#8211; golang support"},"content":{"rendered":"<p>I didn&#8217;t create this language support file. I&#8217;m told it even has a few minor issues. It&#8217;s just that attachments have a way of disappearing in the archives, so I&#8217;m pasting it here.<\/p>\n<pre>% An attempt to create a Golang mode for jed.\r\n% Mostly gratefully stolen from pymode.\r\n% Feel free to improve.\r\n%\r\n% Authors: bukin.dima@gmail.com\r\n%\r\n% Caveats:\r\n% many :)\r\n\r\n$1 = \"golang\";\r\n\r\n!if (keymap_p ($1)) make_keymap ($1);\r\n\r\ndefinekey (\"golang_insert_char_indent('}')\", \"}\", $1);\r\ndefinekey (\"golang_insert_char_indent(':')\", \":\", $1);\r\ndefinekey (\"golang_insert_char_indent(')')\", \")\", $1);\r\n\r\nprivate define golang_line_starts_with_ket()\r\n{\r\nbol_skip_white();\r\nif (looking_at_char('}') ||\r\nlooking_at_char(')'))\r\nreturn 1;\r\nreturn 0;\r\n}\r\n\r\nprivate define golang_line_starts_case()\r\n{\r\nbol_skip_white();\r\npush_mark();\r\nskip_chars(\"a-z\");\r\nreturn is_list_element(\"case,default\", bufsubstr(), ',') &gt; 0;\r\n}\r\n\r\n% TODO: This needs improvement to prevent special cases.\r\n% such as: a := \" { \/\/ \"\r\nprivate define golang_line_ends_with_bra()\r\n{\r\neol();\r\nif (bfind_char('{')) {\r\ngo_right(1);\r\nskip_white();\r\nif (eolp() or looking_at(\"\/\/\"))\r\nreturn 1;\r\n}\r\neol();\r\nif (bfind_char('(')) {\r\ngo_right(1);\r\nskip_white();\r\nif (eolp() or looking_at(\"\/\/\"))\r\nreturn 1;\r\n}\r\nreturn 0;\r\n}\r\n\r\nprivate define golang_indent_calculate()\r\n{\r\nvariable col = 0;\r\nvariable endblock = 0;\r\n\r\nEXIT_BLOCK {\r\npop_spot ();\r\nreturn col;\r\n}\r\n\r\nif (golang_line_starts_with_ket() ||\r\ngolang_line_starts_case())\r\nendblock = 1;\r\n\r\n% go to previous non blank line\r\npush_spot_bol ();\r\n!if (re_bsearch (\"[^ \\t\\n]\"))\r\nreturn;\r\nbol_skip_white();\r\n\r\ncol = what_column() - 1;\r\n\r\nif (golang_line_ends_with_bra() ||\r\ngolang_line_starts_case())\r\ncol += TAB;\r\nif (endblock)\r\ncol -= TAB;\r\n}\r\n\r\nprivate define golang_whitespace(cnt)\r\n{\r\nloop (cnt \/ TAB) insert_char('\\t');\r\n}\r\n\r\n% Indent the current line\r\ndefine golang_indent_line()\r\n{\r\nvariable col;\r\ncol = golang_indent_calculate();\r\nbol_trim ();\r\ngolang_whitespace( col );\r\n}\r\n\r\n% Insert a newline and indent the newly created line.\r\ndefine golang_newline_and_indent()\r\n{\r\nnewline();\r\ngolang_indent_line();\r\n}\r\n\r\n% Insert a char and possibly indent the current line.\r\n% Keep the position of the cursor just after the char.\r\ndefine golang_insert_char_indent(char)\r\n{\r\nvariable i;\r\ninsert_char(char);\r\ni = what_column();\r\nbol_skip_white();\r\ni = i - what_column();\r\ngolang_indent_line();\r\nbol_skip_white();\r\ngoto_column(i + what_column() - 1);\r\ndel();\r\ncall(\"self_insert_cmd\");\r\n}\r\n\r\ncreate_syntax_table ($1);\r\ndefine_syntax (\"\/\/\", \"\", '%', $1); % comments\r\ndefine_syntax (\"([{\", \")]}\", '(', $1); % delimiters\r\ndefine_syntax ('\"', '\"', $1); % quoted strings\r\ndefine_syntax ('`', '\"', $1); % quoted strings\r\ndefine_syntax ('\\'', '\\'', $1); % quoted characters\r\ndefine_syntax ('\\\\', '\\\\', $1); % escape\r\ndefine_syntax (\"0-9a-zA-Z_\", 'w', $1); % words\r\ndefine_syntax (\"-+0-9a-fA-FjJlLxX.\", '0', $1); % Numbers\r\ndefine_syntax (\",;.:\", ',', $1); % punctuation\r\ndefine_syntax (\"%-+\/&amp;*=&lt;&gt;|!~^\", '+', $1); % operators\r\nset_syntax_flags ($1, 0); % keywords ARE case-sensitive\r\n\r\n() = define_keywords ($1, \"ifgo\", 2); % all keywords of length 2\r\n() = define_keywords ($1, \"formapvar\", 3); % of length 3 ....\r\n() = define_keywords ($1, \"casechanelsefuncgototype\", 4);\r\n() = define_keywords ($1, \"breakconstdeferrange\", 5);\r\n() = define_keywords ($1, \"importreturnselectstructswitch\", 6);\r\n() = define_keywords ($1, \"defaultpackage\", 7);\r\n() = define_keywords ($1, \"continue\", 8);\r\n() = define_keywords ($1, \"interface\", 9);\r\n() = define_keywords ($1, \"fallthrough\", 11);\r\n\r\n% No dfa yet\r\n\r\n%!%+\r\n%\\function{golang_mode}\r\n%\\synopsis{golang_mode}\r\n%\\usage{golang_mode ()}\r\n%\\description\r\n% An attempt to create a golang mode.\r\n%\r\n% Hooks: \\var{golang_mode_hook}\r\n%!%-\r\ndefine golang_mode ()\r\n{\r\nvariable golang = \"golang\";\r\n\r\nTAB = TAB_DEFAULT;\r\nif (TAB == 0) {\r\nTAB = 4;\r\n}\r\n\r\nset_mode (golang, 0x4); % flag value of 4 is generic language mode\r\nuse_keymap(golang);\r\nset_buffer_hook (\"indent_hook\", \"golang_indent_line\");\r\nset_buffer_hook (\"newline_indent_hook\", \"golang_newline_and_indent\");\r\nuse_syntax_table (golang);\r\nrun_mode_hooks (\"golang_mode_hook\");\r\n}\r\n\r\n\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>I didn&#8217;t create this language support file. I&#8217;m told it even has a few minor issues. It&#8217;s just that attachments have a way of disappearing in the archives, so I&#8217;m pasting it here. % An attempt to create a Golang mode for jed. % Mostly gratefully stolen from pymode. % Feel free to improve. % % Authors: bukin.dima@gmail.com % % Caveats: % many :) $1 = &#8220;golang&#8221;; !if (keymap_p ($1)) make_keymap ($1); definekey (&#8220;golang_insert_char_indent(&#8216;}&#8217;)&#8221;, &#8220;}&#8221;, &hellip; <a title=\"JED &#8211; golang support\" class=\"bnm-read-more\" href=\"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/jed-golang-support\/\"><span class=\"screen-reader-text\">JED &#8211; golang support<\/span>Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[1638,1267,1419],"class_list":["post-2854","post","type-post","status-publish","format-standard","hentry","category-information-technology","tag-golang","tag-jed","tag-jed-text-editor","bnm-entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>JED - golang support &#8211; Logikal Blog<\/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:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/jed-golang-support\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JED - golang support &#8211; Logikal Blog\" \/>\n<meta property=\"og:description\" content=\"I didn&#8217;t create this language support file. I&#8217;m told it even has a few minor issues. It&#8217;s just that attachments have a way of disappearing in the archives, so I&#8217;m pasting it here. % An attempt to create a Golang mode for jed. % Mostly gratefully stolen from pymode. % Feel free to improve. % % Authors: bukin.dima@gmail.com % % Caveats: % many :) $1 = &quot;golang&quot;; !if (keymap_p ($1)) make_keymap ($1); definekey (&quot;golang_insert_char_indent(&#039;}&#039;)&quot;, &quot;}&quot;, &hellip; JED &#8211; golang supportRead more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/jed-golang-support\/\" \/>\n<meta property=\"og:site_name\" content=\"Logikal Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-06-15T18:15:26+00:00\" \/>\n<meta name=\"author\" content=\"seasoned_geek\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"seasoned_geek\" \/>\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.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/jed-golang-support\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/jed-golang-support\\\/\"},\"author\":{\"name\":\"seasoned_geek\",\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/c077f770ade13de7faaf616c3eac6842\"},\"headline\":\"JED &#8211; golang support\",\"datePublished\":\"2018-06-15T18:15:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/jed-golang-support\\\/\"},\"wordCount\":41,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/c077f770ade13de7faaf616c3eac6842\"},\"keywords\":[\"golang\",\"jed\",\"jed text editor\"],\"articleSection\":[\"Information Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/jed-golang-support\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/jed-golang-support\\\/\",\"url\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/jed-golang-support\\\/\",\"name\":\"JED - golang support &#8211; Logikal Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/#website\"},\"datePublished\":\"2018-06-15T18:15:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/jed-golang-support\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/jed-golang-support\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/information-technology\\\/jed-golang-support\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JED &#8211; golang support\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/#website\",\"url\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/\",\"name\":\"Logikal Blog\",\"description\":\"No part of this site may be used by AI without first purchasing that right\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/c077f770ade13de7faaf616c3eac6842\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/c077f770ade13de7faaf616c3eac6842\",\"name\":\"seasoned_geek\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ae9adac14079d84b909e635d7af986fe4568053af4fd9ff8d4109298c392493e?s=96&d=mm&r=r\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ae9adac14079d84b909e635d7af986fe4568053af4fd9ff8d4109298c392493e?s=96&d=mm&r=r\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ae9adac14079d84b909e635d7af986fe4568053af4fd9ff8d4109298c392493e?s=96&d=mm&r=r\",\"caption\":\"seasoned_geek\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ae9adac14079d84b909e635d7af986fe4568053af4fd9ff8d4109298c392493e?s=96&d=mm&r=r\"},\"description\":\"Roland Hughes started his IT career in the early 1980s. He quickly became a consultant and president of Logikal Solutions, a software consulting firm specializing in OpenVMS application and C++\\\/Qt touchscreen\\\/embedded Linux development. Early in his career he became involved in what is now called cross platform development. Given the dearth of useful books on the subject he ventured into the world of professional author in 1995 writing the first of the \\\"Zinc It!\\\" book series for John Gordon Burke Publisher, Inc. A decade later he released a massive (nearly 800 pages) tome \\\"The Minimum You Need to Know to Be an OpenVMS Application Developer\\\" which tried to encapsulate the essential skills gained over what was nearly a 20 year career at that point. From there \\\"The Minimum You Need to Know\\\" book series was born. Three years later he wrote his first novel \\\"Infinite Exposure\\\" which got much notice from people involved in the banking and financial security worlds. Some of the attacks predicted in that book have since come to pass. While it was not originally intended to be a trilogy, it became the first book of \\\"The Earth That Was\\\" trilogy: Infinite Exposure Lesedi - The Greatest Lie Ever Told John Smith - Last Known Survivor of the Microsoft Wars When he is not consulting Roland Hughes posts about technology and sometimes politics on his blog. He also has regularly scheduled Sunday posts appearing on the Interesting Authors blog.\",\"sameAs\":[\"https:\\\/\\\/theminimumyouneedtoknow.com\"],\"url\":\"https:\\\/\\\/www.logikalsolutions.com\\\/wordpress\\\/author\\\/seasoned_geek\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"JED - golang support &#8211; Logikal Blog","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.logikalsolutions.com\/wordpress\/information-technology\/jed-golang-support\/","og_locale":"en_US","og_type":"article","og_title":"JED - golang support &#8211; Logikal Blog","og_description":"I didn&#8217;t create this language support file. I&#8217;m told it even has a few minor issues. It&#8217;s just that attachments have a way of disappearing in the archives, so I&#8217;m pasting it here. % An attempt to create a Golang mode for jed. % Mostly gratefully stolen from pymode. % Feel free to improve. % % Authors: bukin.dima@gmail.com % % Caveats: % many :) $1 = \"golang\"; !if (keymap_p ($1)) make_keymap ($1); definekey (\"golang_insert_char_indent('}')\", \"}\", &hellip; JED &#8211; golang supportRead more","og_url":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/jed-golang-support\/","og_site_name":"Logikal Blog","article_published_time":"2018-06-15T18:15:26+00:00","author":"seasoned_geek","twitter_card":"summary_large_image","twitter_misc":{"Written by":"seasoned_geek","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/jed-golang-support\/#article","isPartOf":{"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/jed-golang-support\/"},"author":{"name":"seasoned_geek","@id":"https:\/\/www.logikalsolutions.com\/wordpress\/#\/schema\/person\/c077f770ade13de7faaf616c3eac6842"},"headline":"JED &#8211; golang support","datePublished":"2018-06-15T18:15:26+00:00","mainEntityOfPage":{"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/jed-golang-support\/"},"wordCount":41,"commentCount":0,"publisher":{"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/#\/schema\/person\/c077f770ade13de7faaf616c3eac6842"},"keywords":["golang","jed","jed text editor"],"articleSection":["Information Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/jed-golang-support\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/jed-golang-support\/","url":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/jed-golang-support\/","name":"JED - golang support &#8211; Logikal Blog","isPartOf":{"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/#website"},"datePublished":"2018-06-15T18:15:26+00:00","breadcrumb":{"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/jed-golang-support\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/jed-golang-support\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.logikalsolutions.com\/wordpress\/information-technology\/jed-golang-support\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.logikalsolutions.com\/wordpress\/"},{"@type":"ListItem","position":2,"name":"JED &#8211; golang support"}]},{"@type":"WebSite","@id":"https:\/\/www.logikalsolutions.com\/wordpress\/#website","url":"https:\/\/www.logikalsolutions.com\/wordpress\/","name":"Logikal Blog","description":"No part of this site may be used by AI without first purchasing that right","publisher":{"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/#\/schema\/person\/c077f770ade13de7faaf616c3eac6842"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.logikalsolutions.com\/wordpress\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.logikalsolutions.com\/wordpress\/#\/schema\/person\/c077f770ade13de7faaf616c3eac6842","name":"seasoned_geek","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ae9adac14079d84b909e635d7af986fe4568053af4fd9ff8d4109298c392493e?s=96&d=mm&r=r","url":"https:\/\/secure.gravatar.com\/avatar\/ae9adac14079d84b909e635d7af986fe4568053af4fd9ff8d4109298c392493e?s=96&d=mm&r=r","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ae9adac14079d84b909e635d7af986fe4568053af4fd9ff8d4109298c392493e?s=96&d=mm&r=r","caption":"seasoned_geek"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/ae9adac14079d84b909e635d7af986fe4568053af4fd9ff8d4109298c392493e?s=96&d=mm&r=r"},"description":"Roland Hughes started his IT career in the early 1980s. He quickly became a consultant and president of Logikal Solutions, a software consulting firm specializing in OpenVMS application and C++\/Qt touchscreen\/embedded Linux development. Early in his career he became involved in what is now called cross platform development. Given the dearth of useful books on the subject he ventured into the world of professional author in 1995 writing the first of the \"Zinc It!\" book series for John Gordon Burke Publisher, Inc. A decade later he released a massive (nearly 800 pages) tome \"The Minimum You Need to Know to Be an OpenVMS Application Developer\" which tried to encapsulate the essential skills gained over what was nearly a 20 year career at that point. From there \"The Minimum You Need to Know\" book series was born. Three years later he wrote his first novel \"Infinite Exposure\" which got much notice from people involved in the banking and financial security worlds. Some of the attacks predicted in that book have since come to pass. While it was not originally intended to be a trilogy, it became the first book of \"The Earth That Was\" trilogy: Infinite Exposure Lesedi - The Greatest Lie Ever Told John Smith - Last Known Survivor of the Microsoft Wars When he is not consulting Roland Hughes posts about technology and sometimes politics on his blog. He also has regularly scheduled Sunday posts appearing on the Interesting Authors blog.","sameAs":["https:\/\/theminimumyouneedtoknow.com"],"url":"https:\/\/www.logikalsolutions.com\/wordpress\/author\/seasoned_geek\/"}]}},"_links":{"self":[{"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/posts\/2854","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/comments?post=2854"}],"version-history":[{"count":0,"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/posts\/2854\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/media?parent=2854"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/categories?post=2854"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.logikalsolutions.com\/wordpress\/wp-json\/wp\/v2\/tags?post=2854"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}