Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix two typos in tex.rst #332

Merged
merged 1 commit into from
Jan 13, 2024
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
Loading