Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Fork of markdown-it-katex
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Postal Owl
Fork of markdown-it-katex
Commits
fd1ff4d1
Commit
fd1ff4d1
authored
9 years ago
by
Waylon Flinn
Browse files
Options
Downloads
Patches
Plain Diff
wrap display block in paragraph tag
closes #1
parent
a89d3064
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
index.js
+1
-1
1 addition, 1 deletion
index.js
with
1 addition
and
1 deletion
index.js
+
1
−
1
View file @
fd1ff4d1
...
...
@@ -152,7 +152,7 @@ module.exports = function math_plugin(md, options) {
var
katexBlock
=
function
(
latex
){
options
.
displayMode
=
true
;
try
{
return
katex
.
renderToString
(
latex
,
options
);
return
"
<p>
"
+
katex
.
renderToString
(
latex
,
options
)
+
"
</p>
"
;
}
catch
(
error
){
if
(
options
.
throwOnError
){
console
.
log
(
error
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment