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]
We’ve all been in that meeting. The dashboard on the boardroom screen is a sea…
When building a regression model or performing regression analysis to predict a target variable, understanding…
If you've built a "Naive" RAG pipeline, you've probably hit a wall. You've indexed your…
If you're starting with large language models, you must have heard of RAG (Retrieval-Augmented Generation).…
If you've spent any time with Python, you've likely heard the term "Pythonic." It refers…
Large language models (LLMs) have fundamentally transformed our digital landscape, powering everything from chatbots and…