Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions data/filters.json
Original file line number Diff line number Diff line change
Expand Up @@ -1996,13 +1996,13 @@
"description": "",
"syntax": "",
"path": "/",
"raw_liquid": "{{ 'this sentence should start with a capitalized letter.' | capitalize }}",
"raw_liquid": "{{ 'this sentence should start with a capitalized word.' | capitalize }}",
"parameter": false,
"display_type": "text",
"show_data_tab": true
}
],
"summary": "Capitalizes the first letter in a string and downcases the remaining characters.",
"summary": "Capitalizes the first word in a string and downcases the remaining characters.",
"syntax": "string | capitalize",
"name": "capitalize"
},
Expand Down
6 changes: 3 additions & 3 deletions data/tags.json
Original file line number Diff line number Diff line change
Expand Up @@ -1119,9 +1119,9 @@
"category": "theme",
"deprecated": false,
"deprecation_reason": "",
"description": "Each section, block or snippet can have only one `{% stylesheet %}` tag.\n\nTo learn more about how CSS that's defined between the `stylesheet` tags is loaded and run, refer to the documentation for [stylesheet tags](/storefronts/themes/best-practices/javascript-and-stylesheet-tags#stylesheet).\n> Caution:\n> Liquid isn't rendered inside of `{% stylesheet %}` tags. Including Liquid code can cause syntax errors.",
"description": "Each section, block or snippet can have only one `{% stylesheet %}` tag.\n\nTo learn more about how CSS that's defined between the `stylesheet` tags is loaded and run, refer to the documentation for [stylesheet tags](/docs/storefronts/themes/best-practices/javascript-and-stylesheet-tags#stylesheet).\n> Caution:\n> Liquid isn't rendered inside of `{% stylesheet %}` tags. Including Liquid code can cause syntax errors.",
"parameters": [],
"summary": "CSS styles included in [section](/storefronts/themes/architecture/sections), [block](/storefronts/themes/architecture/blocks), and [snippet](/storefronts/themes/architecture/snippets) files.",
"summary": "CSS styles included in [section](/docs/storefronts/themes/architecture/sections), [block](/docs/storefronts/themes/architecture/blocks), and [snippet](/docs/storefronts/themes/architecture/snippets) files.",
"name": "stylesheet",
"syntax": "{% stylesheet %}\n css_styles\n{% endstylesheet %}",
"syntax_keywords": [
Expand Down Expand Up @@ -1153,7 +1153,7 @@
"category": "html",
"deprecated": false,
"deprecation_reason": "",
"description": "> Note:\n> If you reference [color settings](/themes/architecture/settings/input-settings#color) inside `style` tags, then\n> the associated CSS rules will update as the setting is changed in the theme editor, without a page refresh.",
"description": "> Note:\n> If you reference [color settings](/docs/storefronts/themes/architecture/settings/input-settings#color) inside `style` tags, then\n> the associated CSS rules will update as the setting is changed in the theme editor, without a page refresh. See [more information and limitations](/docs/storefronts/themes/tools/online-editor#color-settings) of live preview.",
"parameters": [],
"summary": "Generates an HTML `<style>` tag with an attribute of `data-shopify`.",
"name": "style",
Expand Down
Loading