Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
matrix-org
Olm
Commits
dd190545
Commit
dd190545
authored
Jan 14, 2022
by
Hubert Chathi
Browse files
fix doc building. Thanks to Jonas Smedegaard.
parent
99088629
Pipeline
#15970
passed with stages
in 4 minutes and 51 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.rst
View file @
dd190545
Changes in `3.2.10 <https://gitlab.matrix.org/matrix-org/olm/tags/3.2.10>`_
=========================================================================
=========================================================================
==
This release includes no change since 3.2.9, but is created to be able to
publish again the Android library on MavenCentral.
...
...
@@ -113,11 +113,13 @@ Changes in `3.1.5 <https://gitlab.matrix.org/matrix-org/olm/tags/3.1.5>`_
This release includes the following changes since 3.1.4:
* Build improvements:
* Fix CMake handling when installing in a non-standard location. Thanks to
Alexey Rusakov.
* Add support in the Makefile for creating a WASM-ready archive. Thanks to
stoically.
* Improve support for LLVM is Makefile. Thanks to caywin25 for reporting.
* Add a TypeScript definition file.
* Some documentation and example fixes.
* Add list of bindings to the README.
...
...
Makefile
View file @
dd190545
...
...
@@ -401,6 +401,9 @@ $(BUILD_DIR)/fuzzers/fuzz_%_msan: fuzzing/fuzzers/fuzz_%.cpp $(FUZZER_MSAN_OBJEC
%.html
:
%.rst
rst2html
$<
$@
%.html
:
%.md
pandoc
--from
markdown
--to
html5
--standalone
--lua-filter
gitlab-math.lua
--katex
-o
$@
$<
### dependencies
-include
$(RELEASE_OBJECTS:.o=.d)
...
...
gitlab-math.lua
0 → 100644
View file @
dd190545
function
Math
(
el
)
if
el
.
mathtype
==
"InlineMath"
then
if
el
.
text
:
sub
(
1
,
1
)
==
'`'
and
el
.
text
:
sub
(
#
el
.
text
)
==
'`'
then
local
text
=
el
.
text
:
sub
(
2
,
#
el
.
text
-
1
)
return
pandoc
.
Math
(
el
.
mathtype
,
text
)
else
local
cont
=
pandoc
.
read
(
el
.
text
)
return
{
pandoc
.
Str
(
"$"
)
}
..
cont
.
blocks
[
1
].
content
..
{
pandoc
.
Str
(
"$"
)
}
end
end
end
function
CodeBlock
(
el
)
if
el
.
classes
[
1
]
==
"math"
then
return
pandoc
.
Para
({
pandoc
.
Math
(
"DisplayMath"
,
el
.
text
)
})
end
end
\ No newline at end of file
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