1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
| { "code": { "prefix": ["code"], "body": [ "{% code <+title+> lang:${1|bash,python,lua,perl,yaml,ruby|} %}", "<+code+>", "{% endcode %}" ], "description": "Next theme environment for Hexo" }, "codeblock": { "prefix": ["codeblock"], "body": [ "{% codeblock <+title+> lang:${1|bash,python,lua,perl,yaml,ruby|} %}", "<+code+>", "{% endcodeblock %}" ], "description": "Next theme environment for Hexo" }, "```": { "prefix": ["```"], "body": [ "```${1|bash,python,lua,perl,yaml,ruby|} <+title+> ", "<+code+>", "```" ], "description": "Next theme environment for Hexo" }, "note": { "prefix": ["note"], "body": [ "{% note ${1|default,primary,success,info,warning,danger|} %}", "<++>", "{% endnote %}" ], "description": "Next theme environment for Hexo" }, "tabs": { "prefix": ["tabs"], "body": [ "{% tabs ${1:<+UniqueName+>} %}", "<!-- tab ${2:<+tabcaption+>} -->", "<++>", "<!-- endtab -->", "<++>", "{% endtabs %}" ], "description": "Next theme environment for Hexo" }, "tab": { "prefix": ["tab"], "body": [ "<!-- tab ${2:<+tabcaption+>} -->", "<++>", "<!-- endtab -->" ], "description": "Next theme environment for Hexo" },
"label": { "prefix": ["label"], "body": [ "{% label ${1|default,primary,success,info,warning,danger|}@${2:<+content+>} %}" ], "description": "Next theme environment for Hexo" },
"centerquote": { "prefix": ["centerquote"], "body": [ "{% centerquote %}", "${1:<+content+>}", "{% endcenterquote %}" ], "description": "Next theme environment for Hexo" },
"video": { "prefix": ["video"], "body": [ "{% video ${1|<+/path/to/your/video.mp4+>,https://<+example.com/sample.mp4+>|}%}" ], "description": "Next theme environment for Hexo" },
"pdf": { "prefix": ["pdf"], "body": [ "{% pdf ${1|<+/path/to/your/video.pdf+>,https://<+example.com/sample.pdf+>|}%}" ], "description": "Next theme environment for Hexo" },
"grouppicture": { "prefix": ["grouppicture"], "body": [ "{% grouppicture ${1:<+number+>}-${2:<+layout+>} %}", "![${3:<+picturetitle+>}](${4:<+picture+>})", "{% endgroudpicture %}" ], "description": "Next theme environment for Hexo" } }
|