{"id":164,"date":"2013-06-13T23:29:45","date_gmt":"2013-06-13T23:29:45","guid":{"rendered":"https:\/\/guwii.com\/?p=164"},"modified":"2018-06-13T17:39:02","modified_gmt":"2018-06-13T16:39:02","slug":"best-sublime-text-setup","status":"publish","type":"post","link":"https:\/\/guwii.com\/best-sublime-text-setup\/","title":{"rendered":"Best Sublime Text Setup"},"content":{"rendered":"

Sublime Text 3, is, without a doubt the best code editor and package for web development I have used in my 8 years of web experience.
\nOut of the box it’s very powerful and sufficient, however – you know you can always get 110%.<\/p>\n

Firstly, the huge array of packages\/plugins for Sublime Text 3 is incredible, with lots of them receiving very regular updates and support on GitHub.<\/p>\n

However, personally I do like to keep things simple and my mantra is generally “The right tool for the right job, and not too many hammers”.<\/strong><\/p>\n

Settings<\/h1>\n

The ability and control over Sublime Text settings is awesome, and definitely worth tweaking if you spend 8 hours plus per day in it like I do.
\nThese settings I have tweaked and played with, and generally what I find the best all around setup with usability and speed in mind.
\nThe following can be placed in your Settings - User<\/code> file, accessed through: Preferences > Settings - User<\/code> Mac Shortcut:[\u2318 + ,].<\/p>\n

{\r\n\t\"bold_folder_labels\": true,\r\n\t\"caret_extra_width\": 1,\r\n\t\"caret_style\": \"phase\",\r\n\t\"close_windows_when_empty\": false,\r\n\t\"copy_with_empty_selection\": false,\r\n\t\"drag_text\": false,\r\n\t\"draw_indent_guides\": true,\r\n\t\"draw_minimap_border\": true,\r\n\t\"draw_white_space\": \"selection\",\r\n\t\"enable_tab_scrolling\": false,\r\n\t\"file_exclude_patterns\":\r\n\t[\r\n\t\t\".DS_Store\",\r\n\t\t\"*.lib\",\r\n\t\t\"*.log\"\r\n\t],\r\n\t\"folder_exclude_patterns\":\r\n\t[\r\n\t\t\".git\",\r\n\t\t\".bundle\",\r\n\t\t\".sass-cache\",\r\n\t\t\".svn\",\r\n\t\t\".hg\"\r\n\t],\r\n\t\"font_face\": \"Source Code Pro\",\r\n\t\"font_options\":\r\n\t[\r\n\t\t\"no_round\"\r\n\t],\r\n\t\"highlight_line\": true,\r\n\t\"highlight_modified_tabs\": true,\r\n\t\"ignored_packages\":\r\n\t[\r\n\t\t\"DocBlockr\",\r\n\t\t\"SublimeLinter\",\r\n\t\t\"FuzzyFileNav\",\r\n\t\t\"EditorConfig\",\r\n\t\t\"Vintage\",\r\n\t\t\"PHP Syntax Checker\",\r\n\t\t\"HTML5\"\r\n\t],\r\n\t\"indent_guide_options\":\r\n\t[\r\n\t\t\"draw_normal\",\r\n\t\t\"draw_active\"\r\n\t],\r\n\t\"line_padding_bottom\": 2,\r\n\t\"line_padding_top\": 2,\r\n\t\"match_brackets\": true,\r\n\t\"match_brackets_angle\": true,\r\n\t\"match_brackets_braces\": true,\r\n\t\"match_brackets_content\": false,\r\n\t\"match_brackets_square\": true,\r\n\t\"match_selection\": false,\r\n\t\"match_tags\": false,\r\n\t\"open_files_in_new_window\": false,\r\n\t\"overlay_scroll_bars\": \"enabled\",\r\n\t\"preview_on_click\": true,\r\n\t\"remember_open_files\": true,\r\n\t\"remember_open_folders\": true,\r\n\t\"scroll_past_end\": true,\r\n\t\"scroll_speed\": 5.0,\r\n\t\"shift_tab_unindent\": true,\r\n\t\"show_full_path\": false,\r\n\t\"sidebar_default\": true,\r\n\t\"tab_size\": 2,\r\n\t\"tabs_small\": true,\r\n\t\"translate_tabs_to_spaces\": true,\r\n\t\"trim_trailing_white_space_on_save\": true,\r\n\t\"use_simple_full_screen\": true,\r\n\t\"wide_caret\": true,\r\n\t\"word_wrap\": true\r\n}<\/code><\/pre>\n
\n

Here are my suggested plugins:<\/h1>\n

Package Control<\/h2>\n

This is what kicks it all off, you can manually install packages from the console, or downloading and dragging, however this package is a simple way to browse, install and manage your packages within sublime Text 3.
\nTo install it, go to the Package Control Website<\/a><\/p>\n

Sublime Text may need a restart, but then you’re ready to rock. \u2318 + Shift + P (Ctrl + Shift + P) will bring up your Sublime Text Command area, simply start to type package and you will have plenty of options ahead of you. Install Package option will list all packages.
\n
‘Package Control’ Website<\/a><\/p>\n


\n

Advanced new file<\/h2>\n

Creating new files\/folders shouldn’t require any obtrusive UI, and should feel quick and intuitive, with Advanced New File it is.
\nInstead of the typical keyboard shortcut for a new file of: \u2318 + N (CTRL + N)<\/code>, you now use \u2318,alt + N (CTRL,alt + N)<\/code>, in doing so brings you up the very subtle and clean text area:
\n\"Advanced
\nIn here you type the path for your new file\/folder.
\nExample:
\n\"Advanced
\nDoing the above, will not only quickly create the folder for you of a folder that doesn't exist <\/code>, but also the file: MyNewFile.php<\/code> inside of it. Very quick and easy, no browsing between folders. You can even use it for existing folders, so typing: includes\/aNewFile.php<\/code> will add aNewFile.php<\/code> to the already existing folder of includes<\/code>.
\n
‘Advanced New File’ on GitHub<\/a><\/p>\n


\n

Emmet<\/h2>\n

Quite simply a deal breaker for me for choosing Sublime Text. Emmet enables you to work faster, smarter and more intelligently.
\nEmmet enables you to type shortcuts, create DOM elements that are nested and multiples of DOM elements very easily.
\nThe screenshot below shows how easy creating nested elements with content is.
\n\"emmet-example\"
\nThis is just the start of Emmet, as well as all the HTML nesting abilities, there are also many CSS speed ups to be hard. p10<\/code> will become padding: 10px<\/code>, how about percentages instead? Easy: p10p<\/code> will become padding: 10%<\/code>. The uses of this package go on and on, simply a must have for any front end web developer (and plenty of uses for back end too).
\n
‘Emmet’ on GitHub<\/a><\/p>\n


\n

Trailing Spaces<\/h2>\n

This package is possibly not for everyone, but it appeals greatly to my OCD nature. It will show you where you have unnecessary spaces (which tend to build up in community projects or sloppy code), I like all my documents to be Tab Spaced and coherent.
\nThis package will display a pink background to spaces it deems unnecessary. This package has also saved me one or two headaches, I’m sure many of you have had the situation of a trailing space after a PHP document managing to break the whole damn thing!
\n\"TrailingSpaces
\n
‘Trailing Spaces’ on GitHub<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"

Sublime Text 3, is, without a doubt the best code editor and package for web development I have used in my 8 years of web experience. Out of the box it’s very powerful and sufficient, however – you know you can always get 110%. Firstly, the huge array of packages\/plugins […]<\/p>\n","protected":false},"author":1,"featured_media":614,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[37,38],"tags":[],"acf":[],"yoast_head":"\nBest Sublime Text Setup - guwii<\/title>\n<meta name=\"description\" content=\"The best plugins and setup settings for Sublime Text 2 - optimized for simplicity and 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:\/\/guwii.com\/best-sublime-text-setup\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Best Sublime Text Setup - guwii\" \/>\n<meta property=\"og:description\" content=\"The best plugins and setup settings for Sublime Text 2 - optimized for simplicity and speed!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/guwii.com\/best-sublime-text-setup\/\" \/>\n<meta property=\"og:site_name\" content=\"guwii\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/guwii\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/guwii\/\" \/>\n<meta property=\"article:published_time\" content=\"2013-06-13T23:29:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-06-13T16:39:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/guwii.com\/wp-content\/uploads\/2013\/08\/Sublime-Text-e1429872020215.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"631\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Alex\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@guwiidigital\" \/>\n<meta name=\"twitter:site\" content=\"@guwiidigital\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Alex\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/guwii.com\/best-sublime-text-setup\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/guwii.com\/best-sublime-text-setup\/\"},\"author\":{\"name\":\"Alex\",\"@id\":\"https:\/\/guwii.com\/#\/schema\/person\/dcddaceaae34a2f09e6fb9a21dc29183\"},\"headline\":\"Best Sublime Text Setup\",\"datePublished\":\"2013-06-13T23:29:45+00:00\",\"dateModified\":\"2018-06-13T16:39:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/guwii.com\/best-sublime-text-setup\/\"},\"wordCount\":593,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/guwii.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/guwii.com\/best-sublime-text-setup\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/guwii.com\/wp-content\/uploads\/2013\/08\/Sublime-Text-e1429872020215.png\",\"articleSection\":[\"sublime text tips\",\"workflow\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/guwii.com\/best-sublime-text-setup\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/guwii.com\/best-sublime-text-setup\/\",\"url\":\"https:\/\/guwii.com\/best-sublime-text-setup\/\",\"name\":\"Best Sublime Text Setup - guwii\",\"isPartOf\":{\"@id\":\"https:\/\/guwii.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/guwii.com\/best-sublime-text-setup\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/guwii.com\/best-sublime-text-setup\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/guwii.com\/wp-content\/uploads\/2013\/08\/Sublime-Text-e1429872020215.png\",\"datePublished\":\"2013-06-13T23:29:45+00:00\",\"dateModified\":\"2018-06-13T16:39:02+00:00\",\"description\":\"The best plugins and setup settings for Sublime Text 2 - optimized for simplicity and speed!\",\"breadcrumb\":{\"@id\":\"https:\/\/guwii.com\/best-sublime-text-setup\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/guwii.com\/best-sublime-text-setup\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/guwii.com\/best-sublime-text-setup\/#primaryimage\",\"url\":\"https:\/\/guwii.com\/wp-content\/uploads\/2013\/08\/Sublime-Text-e1429872020215.png\",\"contentUrl\":\"https:\/\/guwii.com\/wp-content\/uploads\/2013\/08\/Sublime-Text-e1429872020215.png\",\"width\":1024,\"height\":631},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/guwii.com\/best-sublime-text-setup\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/guwii.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Best Sublime Text Setup\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/guwii.com\/#website\",\"url\":\"https:\/\/guwii.com\/\",\"name\":\"guwii\",\"description\":\"A complete digital partner for your business. Design, Development, SEO, IT and Marketing.\",\"publisher\":{\"@id\":\"https:\/\/guwii.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/guwii.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/guwii.com\/#organization\",\"name\":\"guwii\",\"url\":\"https:\/\/guwii.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/guwii.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/guwii.com\/wp-content\/uploads\/2018\/06\/guwii-on-light-large.png\",\"contentUrl\":\"https:\/\/guwii.com\/wp-content\/uploads\/2018\/06\/guwii-on-light-large.png\",\"width\":2000,\"height\":754,\"caption\":\"guwii\"},\"image\":{\"@id\":\"https:\/\/guwii.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/guwii\",\"https:\/\/x.com\/guwiidigital\",\"https:\/\/www.instagram.com\/guwiidigital\/\",\"https:\/\/www.linkedin.com\/company\/guwii\/\",\"https:\/\/www.pinterest.co.uk\/guwiidigital\/\",\"https:\/\/www.youtube.com\/guwii\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/guwii.com\/#\/schema\/person\/dcddaceaae34a2f09e6fb9a21dc29183\",\"name\":\"Alex\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/guwii.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6d55b9d9169e09016dba7b95759850a4?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6d55b9d9169e09016dba7b95759850a4?s=96&r=g\",\"caption\":\"Alex\"},\"sameAs\":[\"https:\/\/guwii.com\",\"https:\/\/www.facebook.com\/guwii\/\",\"https:\/\/x.com\/guwiidigital\"],\"url\":\"https:\/\/guwii.com\/author\/guwadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Best Sublime Text Setup - guwii","description":"The best plugins and setup settings for Sublime Text 2 - optimized for simplicity and 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:\/\/guwii.com\/best-sublime-text-setup\/","og_locale":"en_US","og_type":"article","og_title":"Best Sublime Text Setup - guwii","og_description":"The best plugins and setup settings for Sublime Text 2 - optimized for simplicity and speed!","og_url":"https:\/\/guwii.com\/best-sublime-text-setup\/","og_site_name":"guwii","article_publisher":"https:\/\/www.facebook.com\/guwii","article_author":"https:\/\/www.facebook.com\/guwii\/","article_published_time":"2013-06-13T23:29:45+00:00","article_modified_time":"2018-06-13T16:39:02+00:00","og_image":[{"width":1024,"height":631,"url":"https:\/\/guwii.com\/wp-content\/uploads\/2013\/08\/Sublime-Text-e1429872020215.png","type":"image\/png"}],"author":"Alex","twitter_card":"summary_large_image","twitter_creator":"@guwiidigital","twitter_site":"@guwiidigital","twitter_misc":{"Written by":"Alex","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/guwii.com\/best-sublime-text-setup\/#article","isPartOf":{"@id":"https:\/\/guwii.com\/best-sublime-text-setup\/"},"author":{"name":"Alex","@id":"https:\/\/guwii.com\/#\/schema\/person\/dcddaceaae34a2f09e6fb9a21dc29183"},"headline":"Best Sublime Text Setup","datePublished":"2013-06-13T23:29:45+00:00","dateModified":"2018-06-13T16:39:02+00:00","mainEntityOfPage":{"@id":"https:\/\/guwii.com\/best-sublime-text-setup\/"},"wordCount":593,"commentCount":2,"publisher":{"@id":"https:\/\/guwii.com\/#organization"},"image":{"@id":"https:\/\/guwii.com\/best-sublime-text-setup\/#primaryimage"},"thumbnailUrl":"https:\/\/guwii.com\/wp-content\/uploads\/2013\/08\/Sublime-Text-e1429872020215.png","articleSection":["sublime text tips","workflow"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/guwii.com\/best-sublime-text-setup\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/guwii.com\/best-sublime-text-setup\/","url":"https:\/\/guwii.com\/best-sublime-text-setup\/","name":"Best Sublime Text Setup - guwii","isPartOf":{"@id":"https:\/\/guwii.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/guwii.com\/best-sublime-text-setup\/#primaryimage"},"image":{"@id":"https:\/\/guwii.com\/best-sublime-text-setup\/#primaryimage"},"thumbnailUrl":"https:\/\/guwii.com\/wp-content\/uploads\/2013\/08\/Sublime-Text-e1429872020215.png","datePublished":"2013-06-13T23:29:45+00:00","dateModified":"2018-06-13T16:39:02+00:00","description":"The best plugins and setup settings for Sublime Text 2 - optimized for simplicity and speed!","breadcrumb":{"@id":"https:\/\/guwii.com\/best-sublime-text-setup\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/guwii.com\/best-sublime-text-setup\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/guwii.com\/best-sublime-text-setup\/#primaryimage","url":"https:\/\/guwii.com\/wp-content\/uploads\/2013\/08\/Sublime-Text-e1429872020215.png","contentUrl":"https:\/\/guwii.com\/wp-content\/uploads\/2013\/08\/Sublime-Text-e1429872020215.png","width":1024,"height":631},{"@type":"BreadcrumbList","@id":"https:\/\/guwii.com\/best-sublime-text-setup\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/guwii.com\/"},{"@type":"ListItem","position":2,"name":"Best Sublime Text Setup"}]},{"@type":"WebSite","@id":"https:\/\/guwii.com\/#website","url":"https:\/\/guwii.com\/","name":"guwii","description":"A complete digital partner for your business. Design, Development, SEO, IT and Marketing.","publisher":{"@id":"https:\/\/guwii.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/guwii.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/guwii.com\/#organization","name":"guwii","url":"https:\/\/guwii.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/guwii.com\/#\/schema\/logo\/image\/","url":"https:\/\/guwii.com\/wp-content\/uploads\/2018\/06\/guwii-on-light-large.png","contentUrl":"https:\/\/guwii.com\/wp-content\/uploads\/2018\/06\/guwii-on-light-large.png","width":2000,"height":754,"caption":"guwii"},"image":{"@id":"https:\/\/guwii.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/guwii","https:\/\/x.com\/guwiidigital","https:\/\/www.instagram.com\/guwiidigital\/","https:\/\/www.linkedin.com\/company\/guwii\/","https:\/\/www.pinterest.co.uk\/guwiidigital\/","https:\/\/www.youtube.com\/guwii"]},{"@type":"Person","@id":"https:\/\/guwii.com\/#\/schema\/person\/dcddaceaae34a2f09e6fb9a21dc29183","name":"Alex","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/guwii.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6d55b9d9169e09016dba7b95759850a4?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6d55b9d9169e09016dba7b95759850a4?s=96&r=g","caption":"Alex"},"sameAs":["https:\/\/guwii.com","https:\/\/www.facebook.com\/guwii\/","https:\/\/x.com\/guwiidigital"],"url":"https:\/\/guwii.com\/author\/guwadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/guwii.com\/wp-json\/wp\/v2\/posts\/164"}],"collection":[{"href":"https:\/\/guwii.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/guwii.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/guwii.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/guwii.com\/wp-json\/wp\/v2\/comments?post=164"}],"version-history":[{"count":21,"href":"https:\/\/guwii.com\/wp-json\/wp\/v2\/posts\/164\/revisions"}],"predecessor-version":[{"id":1295,"href":"https:\/\/guwii.com\/wp-json\/wp\/v2\/posts\/164\/revisions\/1295"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/guwii.com\/wp-json\/wp\/v2\/media\/614"}],"wp:attachment":[{"href":"https:\/\/guwii.com\/wp-json\/wp\/v2\/media?parent=164"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/guwii.com\/wp-json\/wp\/v2\/categories?post=164"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/guwii.com\/wp-json\/wp\/v2\/tags?post=164"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}