-
Notifications
You must be signed in to change notification settings - Fork 731
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
Maths support (MSC2191) #2133
Maths support (MSC2191) #2133
Changes from 6 commits
78b870c
20821fb
4c45a69
2262cd4
cf1a938
0a498be
95b1ae9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Add labs support for rendering LaTeX maths (MSC2191) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright (c) 2021 The Matrix.org Foundation C.I.C. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.commonmark.ext.maths | ||
|
||
import org.commonmark.node.CustomBlock | ||
|
||
class DisplayMaths(private val delimiter: DisplayDelimiter) : CustomBlock() { | ||
enum class DisplayDelimiter { | ||
DOUBLE_DOLLAR, SQUARE_BRACKET_ESCAPED | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright (c) 2021 The Matrix.org Foundation C.I.C. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.commonmark.ext.maths | ||
|
||
import org.commonmark.node.CustomNode | ||
import org.commonmark.node.Delimited | ||
|
||
class InlineMaths(private val delimiter: InlineDelimiter) : CustomNode(), Delimited { | ||
enum class InlineDelimiter { | ||
SINGLE_DOLLAR, ROUND_BRACKET_ESCAPED | ||
} | ||
|
||
override fun getOpeningDelimiter(): String { | ||
return when (delimiter) { | ||
InlineDelimiter.SINGLE_DOLLAR -> "$" | ||
InlineDelimiter.ROUND_BRACKET_ESCAPED -> "\\(" | ||
} | ||
} | ||
|
||
override fun getClosingDelimiter(): String { | ||
return when (delimiter) { | ||
InlineDelimiter.SINGLE_DOLLAR -> "$" | ||
InlineDelimiter.ROUND_BRACKET_ESCAPED -> "\\)" | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright (c) 2021 The Matrix.org Foundation C.I.C. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.commonmark.ext.maths | ||
|
||
import org.commonmark.Extension | ||
import org.commonmark.ext.maths.internal.DollarMathsDelimiterProcessor | ||
import org.commonmark.ext.maths.internal.MathsHtmlNodeRenderer | ||
import org.commonmark.parser.Parser | ||
import org.commonmark.renderer.html.HtmlRenderer | ||
|
||
class MathsExtension private constructor() : Parser.ParserExtension, HtmlRenderer.HtmlRendererExtension { | ||
override fun extend(parserBuilder: Parser.Builder) { | ||
parserBuilder.customDelimiterProcessor(DollarMathsDelimiterProcessor()) | ||
} | ||
|
||
override fun extend(rendererBuilder: HtmlRenderer.Builder) { | ||
rendererBuilder.nodeRendererFactory { context -> MathsHtmlNodeRenderer(context) } | ||
} | ||
|
||
companion object { | ||
fun create(): Extension { | ||
return MathsExtension() | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* Copyright (c) 2021 The Matrix.org Foundation C.I.C. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.commonmark.ext.maths.internal | ||
|
||
import org.commonmark.ext.maths.DisplayMaths | ||
import org.commonmark.ext.maths.InlineMaths | ||
import org.commonmark.node.Text | ||
import org.commonmark.parser.delimiter.DelimiterProcessor | ||
import org.commonmark.parser.delimiter.DelimiterRun | ||
|
||
class DollarMathsDelimiterProcessor : DelimiterProcessor { | ||
override fun getOpeningCharacter(): Char { | ||
return '$' | ||
} | ||
|
||
override fun getClosingCharacter(): Char { | ||
return '$' | ||
} | ||
|
||
override fun getMinLength(): Int { | ||
return 1 | ||
} | ||
|
||
override fun getDelimiterUse(opener: DelimiterRun, closer: DelimiterRun): Int { | ||
return if (opener.length() == 1 && closer.length() == 1) 1 // inline | ||
else if (opener.length() == 2 && closer.length() == 2) 2 // display | ||
else 0 | ||
} | ||
|
||
override fun process(opener: Text, closer: Text, delimiterUse: Int) { | ||
val maths = if (delimiterUse == 1) InlineMaths(InlineMaths.InlineDelimiter.SINGLE_DOLLAR) else DisplayMaths(DisplayMaths.DisplayDelimiter.DOUBLE_DOLLAR) | ||
var tmp = opener.next | ||
while (tmp != null && tmp !== closer) { | ||
val next = tmp.next | ||
maths.appendChild(tmp) | ||
tmp = next | ||
} | ||
opener.insertAfter(maths) | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright (c) 2021 The Matrix.org Foundation C.I.C. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.commonmark.ext.maths.internal | ||
|
||
import org.commonmark.ext.maths.DisplayMaths | ||
import org.commonmark.node.Node | ||
import org.commonmark.node.Text | ||
import org.commonmark.renderer.html.HtmlNodeRendererContext | ||
import org.commonmark.renderer.html.HtmlWriter | ||
import java.util.Collections | ||
|
||
class MathsHtmlNodeRenderer(private val context: HtmlNodeRendererContext) : MathsNodeRenderer() { | ||
private val html: HtmlWriter = context.writer | ||
override fun render(node: Node) { | ||
val display = node.javaClass == DisplayMaths::class.java | ||
val contents = node.firstChild // should be the only child | ||
val latex = (contents as Text).literal | ||
val attributes = context.extendAttributes(node, if (display) "div" else "span", Collections.singletonMap("data-mx-maths", | ||
latex)) | ||
html.tag(if (display) "div" else "span", attributes) | ||
html.tag("code") | ||
context.render(contents) | ||
html.tag("/code") | ||
html.tag(if (display) "/div" else "/span") | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* Copyright (c) 2021 The Matrix.org Foundation C.I.C. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.commonmark.ext.maths.internal | ||
|
||
import org.commonmark.ext.maths.InlineMaths | ||
import org.commonmark.ext.maths.DisplayMaths | ||
import org.commonmark.ext.maths.internal.MathsNodeRenderer | ||
import org.commonmark.node.Node | ||
import org.commonmark.renderer.NodeRenderer | ||
import java.util.HashSet | ||
|
||
abstract class MathsNodeRenderer : NodeRenderer { | ||
override fun getNodeTypes(): Set<Class<out Node>> { | ||
val types: MutableSet<Class<out Node>> = HashSet() | ||
types.add(InlineMaths::class.java) | ||
types.add(DisplayMaths::class.java) | ||
return types | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -484,6 +484,7 @@ class MessageItemFactory @Inject constructor( | |
} | ||
.useBigFont(linkifiedBody.length <= MAX_NUMBER_OF_EMOJI_FOR_BIG_FONT * 2 && containsOnlyEmojis(linkifiedBody.toString())) | ||
.canUseTextFuture(canUseTextFuture) | ||
.markwonPlugins(htmlRenderer.get().plugins) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add this behind the lab flag too? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To be honest, I think this should not be gated behind the labs flag. I think you are supposed to use markwon this way. It just so happens that with the existing configuration, it only loads the html rendering plugin and that doesn't have any pre/post hooks so it doesn't matter if you omit this line. In any case, it shouldn't affect performance. |
||
.searchForPills(isFormatted) | ||
.previewUrlRetriever(callback?.getPreviewUrlRetriever()) | ||
.imageContentRenderer(imageContentRenderer) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dependabot will upgrade this dependency, as soon as the PR is merged. Can you add a comment just above to explain why we should stick to this version? A related issue we can track to check if we can safely upgrade would be nice too, or decribe a test that we should do to check that upgrading the lib does not break Math Latex rendering