{"id":22454535,"url":"https://github.com/siteleaf/liquid-syntax-mode","last_synced_at":"2026-02-27T13:02:26.884Z","repository":{"id":9196659,"uuid":"11003623","full_name":"siteleaf/liquid-syntax-mode","owner":"siteleaf","description":"Liquid syntax mode for Sublime Text","archived":false,"fork":false,"pushed_at":"2022-03-24T13:57:52.000Z","size":32,"stargazers_count":70,"open_issues_count":6,"forks_count":24,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-10-30T20:14:53.528Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/siteleaf.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-06-27T17:44:58.000Z","updated_at":"2025-08-29T17:51:08.000Z","dependencies_parsed_at":"2022-09-01T09:20:53.449Z","dependency_job_id":null,"html_url":"https://github.com/siteleaf/liquid-syntax-mode","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/siteleaf/liquid-syntax-mode","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siteleaf%2Fliquid-syntax-mode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siteleaf%2Fliquid-syntax-mode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siteleaf%2Fliquid-syntax-mode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siteleaf%2Fliquid-syntax-mode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/siteleaf","download_url":"https://codeload.github.com/siteleaf/liquid-syntax-mode/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siteleaf%2Fliquid-syntax-mode/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29896314,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T12:09:13.686Z","status":"ssl_error","status_checked_at":"2026-02-27T12:09:13.282Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-06T07:08:29.596Z","updated_at":"2026-02-27T13:02:26.842Z","avatar_url":"https://github.com/siteleaf.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"## Siteleaf Liquid support for Sublime Text\n\nThis is a fork of the [shopify-liquid](https://bitbucket.org/granteagon/shopify-liquid) syntax, which was based off of the Djaniero package for Django.\n\n## Installation\n\n**Suggested**: Install using [Package Control](https://packagecontrol.io/). Search for \"Siteleaf Liquid Syntax\".\n\n**Or** install manually:\n\n1. Clone this repo\n2. Put the contents of this repo directly inside:\n\n - OS X: ~/Library/Application Support/Sublime Text 3/Packages/\n - Windows: %APPDATA%/Sublime Text 3/Packages/\n - Linux: ~/.config/sublime-text-3/Packages\n\n**After installing:**\n\nYou might need to switch to the syntax mode. (`shift + cmd + p`, search for Liquid, \"Set Syntax: HTML (Liquid)\")\n\n## Autocomplete\n\nTo show the autocomplete suggestions, your cursor must be within a tag markup or output marker wrapper (`{% %}` or `{{ }}`)\n\nThen press `ctrl + spacebar`, or add the following to your user settings file:\n\n```\n\"auto_complete_selector\": \"source - comment, text.html.liquid punctuation.output.liquid, text.html.liquid punctuation.tag.liquid\"\n```\n\n## Snippets\n\nSome handy snippets:\n\n**IF statement**\n\n```\nif + tab \u003e\u003e\u003e\n\n{% if $1 %}\n  $2\n{% endif %}\n```\n\n**Tag markup**\n\n```\n% + tab \u003e\u003e\u003e\n\n{% $1 %}\n```\n\n**Assign**\n\n```\nassign + tab \u003e\u003e\u003e\n\n{% assign $1 = $2 %}\n```\n\n**Capture**\n\n```\ncapture + tab \u003e\u003e\u003e\n\n{% capture $1 %}$2{% endcapture %}\n```\n\n**Comment**\n\n```\ncomment + tab \u003e\u003e\u003e\n\n{% comment %}$0{% endcomment %}\n```\n\n**Context variable**\n\n```\nva + tab \u003e\u003e\u003e\n\n{{ $1 }}\n```\n\n**Cycle**\n\n```\ncycle + tab \u003e\u003e\u003e\n\n{% cycle $1 %}\n```\n\n**Else**\n\n```\nelse + tab \u003e\u003e\u003e\n\n{% else %}\n```\n\n**Elsif**\n\n```\nelsif + tab \u003e\u003e\u003e\n\n{% elsif $1 %}\n```\n\n**Endcapture**\n\n```\nendcapture + tab \u003e\u003e\u003e\n\n{% endcapture %}\n```\n\n**Endfor**\n\n```\nendfor + tab \u003e\u003e\u003e\n\n{% endfor %}\n```\n\n**Endif**\n\n```\nendif + tab \u003e\u003e\u003e\n\n{% endif %}\n```\n\n**Endraw**\n\n```\nendraw + tab \u003e\u003e\u003e\n\n{% endraw %}\n```\n\n**For**\n\n```\nfor + tab \u003e\u003e\u003e\n\n{% for $1 in $2 %}\n\t$3\n{% endfor %}\n```\n\nFor a full list, check out the \"Snippets\" folder.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiteleaf%2Fliquid-syntax-mode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsiteleaf%2Fliquid-syntax-mode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiteleaf%2Fliquid-syntax-mode/lists"}