Skip to content

Commit cc3734f

Browse files
committed
Fix defaults that cause a syntax error with using "Insert Image Tag"
Sublime will give a syntax error on the spaces around the variable names when editing a markdwon file and inserting a path with the "Insert Image tage" command. So fix the defaults
1 parent 2a96c27 commit cc3734f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/settings.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ User Settings
6161
``jekyll_uploads_baseurl``
6262
^^^^^^^^^^^^^^^^^^^^^^^^^^
6363

64-
:Default: ``{{ site.baseurl }}``
65-
:Description: This string value should represent the **baseurl** for the uploads directory. For example, if your uploads directory is ``uploads`` and you have an image called ``image.png``, the output of inserting the image in your post would be ``{{ uploads_baseurl }}/uploads/image.png``, with ``{{ uploads_baseurl }}`` replace by its value.
64+
:Default: ``{{site.baseurl}}``
65+
:Description: This string value should represent the **baseurl** for the uploads directory of your site. For example, if your uploads directory is ``/uploads`` and you have an image called ``image.png``, the output of inserting the image in your post with the ``Insert upload tag`` command would be ``{{ uploads_baseurl }}/uploads/image.png``, with ``{{ uploads_baseurl }}`` replaced by its value.
6666

6767

6868
.. note::
6969

70-
If you wish to have an absolute link and you have ``url`` defined in your Jekyll ``config.yml`` file, then you can set the value to ``{{ site.url }}/{{ site.baseurl }}``.
70+
If you wish to have an absolute link and you have ``url`` defined in your Jekyll ``config.yml`` file, then you can set the value to ``{{site.url}}/{{site.baseurl}}``.
7171

7272

7373
``jekyll_default_markup``
@@ -144,7 +144,7 @@ For per-project settings, make sure you add your Jekyll settings correctly to yo
144144
.. code-block:: python
145145
146146
# some-file.sublime-settings
147-
147+
148148
{
149149
"folders":
150150
[
@@ -171,4 +171,4 @@ For per-project settings, make sure you add your Jekyll settings correctly to yo
171171
Read the conversation on `issue #16`_ if you have questions on formatting your Project settings file correctly.
172172

173173

174-
.. _issue #16: https://github.com/23maverick23/sublime-jekyll/issues/16
174+
.. _issue #16: https://github.com/23maverick23/sublime-jekyll/issues/16

0 commit comments

Comments
 (0)