Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
7b08a9e8
Commit
7b08a9e8
authored
Sep 26, 2014
by
RawKStar77
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement try/catch in the render function
parent
cd5fa8ba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
12 deletions
+8
-12
markdown.coffee
h/static/scripts/directives/markdown.coffee
+8
-12
No files found.
h/static/scripts/directives/markdown.coffee
View file @
7b08a9e8
...
...
@@ -264,7 +264,6 @@ markdown = ['$filter', '$sanitize', '$sce', '$timeout', ($filter, $sanitize, $sc
input
.
style
.
height
=
output
.
style
.
height
$timeout
->
inputEl
.
focus
()
MathJaxFallback
=
false
renderMath
=
(
textToCheck
)
->
# Parses text for math as denoted by '$$'
i
=
0
...
...
@@ -278,14 +277,7 @@ markdown = ['$filter', '$sanitize', '$sce', '$timeout', ($filter, $sanitize, $sc
endMath
=
i
i
++
if
startMath
!=
null
and
endMath
!=
null
try
math
=
katex
.
renderToString
(
textToCheck
.
substring
(
startMath
,
endMath
))
catch
# KaTex does not have full math support. In the case that we come across math we
# can't render, we load MathJax and render the Math with MathJax.
MathJaxFallback
=
true
loadMathJax
()
return
textToCheck
math
=
katex
.
renderToString
(
textToCheck
.
substring
(
startMath
,
endMath
))
textToCheck
=
(
textToCheck
.
substring
(
0
,
(
startMath
-
2
))
+
math
+
textToCheck
.
substring
((
endMath
+
2
))
...
...
@@ -301,10 +293,14 @@ markdown = ['$filter', '$sanitize', '$sce', '$timeout', ($filter, $sanitize, $sc
inputEl
.
val
(
ctrl
.
$viewValue
or
''
)
value
=
ctrl
.
$viewValue
or
''
markdown
=
$sanitize
$filter
(
'converter'
)
value
rendered
=
renderMath
markdown
scope
.
rendered
=
$sce
.
trustAsHtml
rendered
if
MathJaxFallback
try
rendered
=
renderMath
markdown
catch
if
!
MathJax
?
loadMathJax
()
rendered
=
markdown
MathJax
?
.
Hub
.
Queue
([
"Typeset"
,
MathJax
.
Hub
,
output
])
scope
.
rendered
=
$sce
.
trustAsHtml
rendered
# React to the changes to the input
inputEl
.
bind
'blur change keyup'
,
->
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment