Skip to content
Merged
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 options/input/tex.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ The Configuration Block
maxBuffer: 5 * 1024, // maximum size for the internal TeX string (5K)
baseURL: // URL for use with links to tags (when there is a <base> tag in effect)
(document.getElementsByTagName('base').length === 0) ?
'' : String(document.location).replace(/#.*$/, '')),
'' : String(document.location).replace(/#.*$/, ''),
formatError: // function called when TeX syntax errors occur
(jax, err) => jax.formatError(err)
}
Expand Down Expand Up @@ -89,7 +89,7 @@ Option Descriptions
}
};

This loads the :ref:`tex-enclose` extension and acticates it by
This loads the :ref:`tex-enclose` extension and activates it by
including it in the package list.

You can remove packages from the default list using ``'[-]'``
Expand Down