Sublime as a blogging tool
Â
Following are the key points described later in this article:
Â
Listed below are common use-case scenarios where in Sublime could prove to be very useful.
<snippet>
<content><![CDATA[
<div>This article describes $1.</div>
<div>
Following are the key points discussed later in this article:
<ul>
<li>$2</li>
<li>$3</li>
</ul>
</div>
<div>
<h6>$4</h6>
</div>
]]></content>
<tabTrigger>blogtemplate1</tabTrigger>
<scope>text.html</scope>
</snippet>
<snippet>
<content><![CDATA[
<ul>
<li>$1</li>
<li>$2</li>
</ul>
]]></content>
<tabTrigger>blogul</tabTrigger>
<scope>text.html</scope>
</snippet>
Â
You could create a Sublime custom snippet based on following instructions:
<snippet>
<content><![CDATA[
Hello, ${1:this} is a ${2:snippet}.
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<!-- <tabTrigger>hello</tabTrigger> -->
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>
<tabTrigger>blogtemplate1</tabTrigger>
<scope>text.html</scope>
[adsenseyu1]
In this blog, you would get to know the essential mathematical topics you need to…
This blog represents a list of questions you can ask when thinking like a product…
AI agents are autonomous systems combining three core components: a reasoning engine (powered by LLM),…
Artificial Intelligence (AI) has evolved significantly, from its early days of symbolic reasoning to the…
Last updated: 25th Jan, 2025 Have you ever wondered how to seamlessly integrate the vast…
Hey there! As I venture into building agentic MEAN apps with LangChain.js, I wanted to…