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

lib/markdown2: introduce a new Markdown engine #2720

Merged
merged 17 commits into from
Jun 27, 2018
Merged
Show file tree
Hide file tree
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
24 changes: 24 additions & 0 deletions benchmarks/markdown/bench_markdown.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,30 @@ function bench_nitmd-o()
}
bench_nitmd-o

function bench_nitmd2()
{
name="$FUNCNAME"
skip_test "$name" && return
prepare_res $outdir/nitmd2.dat "nitmd2" "nitmd2"
for file in $bncdir/*.md; do
bench=`basename $file .md`
bench_command "$bench" "" "$engdir/nitmd2/nitmd2" "$file" "$s"
done
}
bench_nitmd2

function bench_nitmd2-o()
{
name="$FUNCNAME"
skip_test "$name" && return
prepare_res $outdir/nitmd2-o.dat "nitmd2-o" "nitmd2-o"
for file in $bncdir/*.md; do
bench=`basename $file .md`
bench_command "$bench" "" "$engdir/nitmd2/nitmd2-o" "$file" "$s"
done
}
bench_nitmd2-o

function bench_txtmark()
{
name="$FUNCNAME"
Expand Down
6 changes: 5 additions & 1 deletion benchmarks/markdown/engines/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.

all: nitmd/nitmd txtmark/Txtmark.class markdown4j/Markdown4j.class
all: nitmd/nitmd nitmd2/nitmd2 txtmark/Txtmark.class markdown4j/Markdown4j.class

nitmd/nitmd:
make -C nitmd

nitmd2/nitmd2:
make -C nitmd2

txtmark/Txtmark.class:
make -C txtmark

Expand All @@ -30,6 +33,7 @@ pandoc/pandoc:

clean:
make -C nitmd clean
make -C nitmd2 clean
make -C txtmark clean
make -C markdown4j clean
make -C pandoc clean
32 changes: 32 additions & 0 deletions benchmarks/markdown/engines/nitmd2/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This file is part of NIT ( http://www.nitlanguage.org ).
#
# Copyright 2015 Alexandre Terrasa <[email protected]>
#
# 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.

NITC=../../../../bin/nitc

all: nitmd2 nitmd2-o

nitmd2:
$(NITC) nitmd2.nit

nitmd2-o:
$(NITC) --semi-global nitmd2.nit -o $@

test: all
./nitmd2 ../../benches/hello.md 5
./nitmd2-o ../../benches/hello.md 5

clean:
rm -rf nitmd2 nitmd2-o
26 changes: 26 additions & 0 deletions benchmarks/markdown/engines/nitmd2/nitmd2.nit
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This file is part of NIT ( http://www.nitlanguage.org ).
#
# 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.

import markdown2

var file = args.first
var n = args[1].to_i

var str = file.to_path.read_all
var parser = new MdParser
var renderer = new HtmlRenderer
for i in [1..n] do
var doc = parser.parse(str)
print renderer.render(doc)
end
27 changes: 27 additions & 0 deletions lib/markdown2/markdown2.nit
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# This file is part of NIT ( http://www.nitlanguage.org ).
#
# 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.

module markdown2

import markdown_block_parsing
import markdown_html_rendering

redef class String
fun md_to_html2: String do
var parser = new MdParser
var doc = parser.parse(self)
var renderer = new HtmlRenderer
return renderer.render(doc)
end
end
Loading