paru 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/paru.rb +16 -0
- data/lib/paru/error.rb +16 -0
- data/lib/paru/filter.rb +17 -1
- data/lib/paru/filter/alignment.rb +16 -0
- data/lib/paru/filter/ast_manipulation.rb +16 -0
- data/lib/paru/filter/attr.rb +16 -0
- data/lib/paru/filter/block.rb +16 -0
- data/lib/paru/filter/block_quote.rb +16 -0
- data/lib/paru/filter/bullet_list.rb +16 -0
- data/lib/paru/filter/citation.rb +16 -0
- data/lib/paru/filter/cite.rb +16 -0
- data/lib/paru/filter/code.rb +16 -0
- data/lib/paru/filter/code_block.rb +16 -0
- data/lib/paru/filter/definition_list.rb +16 -0
- data/lib/paru/filter/definition_list_item.rb +16 -0
- data/lib/paru/filter/div.rb +16 -0
- data/lib/paru/filter/document.rb +17 -1
- data/lib/paru/filter/emph.rb +16 -0
- data/lib/paru/filter/empty_block.rb +16 -0
- data/lib/paru/filter/empty_inline.rb +16 -0
- data/lib/paru/filter/header.rb +16 -0
- data/lib/paru/filter/horizontal_rule.rb +16 -0
- data/lib/paru/filter/image.rb +16 -0
- data/lib/paru/filter/inline.rb +16 -0
- data/lib/paru/filter/line_block.rb +16 -0
- data/lib/paru/filter/line_break.rb +16 -0
- data/lib/paru/filter/link.rb +16 -0
- data/lib/paru/filter/list.rb +16 -0
- data/lib/paru/filter/list_attributes.rb +16 -0
- data/lib/paru/filter/markdown.rb +18 -2
- data/lib/paru/filter/math.rb +16 -0
- data/lib/paru/filter/meta.rb +16 -0
- data/lib/paru/filter/meta_blocks.rb +16 -0
- data/lib/paru/filter/meta_bool.rb +16 -0
- data/lib/paru/filter/meta_inlines.rb +16 -0
- data/lib/paru/filter/meta_list.rb +16 -0
- data/lib/paru/filter/meta_map.rb +23 -0
- data/lib/paru/filter/meta_string.rb +16 -0
- data/lib/paru/filter/meta_value.rb +16 -0
- data/lib/paru/filter/node.rb +16 -0
- data/lib/paru/filter/note.rb +16 -0
- data/lib/paru/filter/null.rb +16 -0
- data/lib/paru/filter/ordered_list.rb +16 -0
- data/lib/paru/filter/para.rb +16 -0
- data/lib/paru/filter/plain.rb +16 -0
- data/lib/paru/filter/quoted.rb +16 -0
- data/lib/paru/filter/raw_block.rb +16 -0
- data/lib/paru/filter/raw_inline.rb +16 -0
- data/lib/paru/filter/small_caps.rb +16 -0
- data/lib/paru/filter/soft_break.rb +16 -0
- data/lib/paru/filter/space.rb +16 -0
- data/lib/paru/filter/span.rb +16 -0
- data/lib/paru/filter/str.rb +16 -0
- data/lib/paru/filter/strikeout.rb +16 -0
- data/lib/paru/filter/strong.rb +16 -0
- data/lib/paru/filter/subscript.rb +16 -0
- data/lib/paru/filter/superscript.rb +16 -0
- data/lib/paru/filter/table.rb +16 -0
- data/lib/paru/filter/table_row.rb +16 -0
- data/lib/paru/filter/target.rb +16 -0
- data/lib/paru/filter/version.rb +16 -0
- data/lib/paru/pandoc.rb +16 -0
- data/lib/paru/pandoc_options.yaml +16 -0
- data/lib/paru/selector.rb +16 -0
- metadata +2 -2
data/lib/paru/filter/note.rb
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# Note [Block]
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
data/lib/paru/filter/null.rb
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# Null
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# OrderedList ListAttributes [[Block]]
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
data/lib/paru/filter/para.rb
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# Para [Inline]
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
data/lib/paru/filter/plain.rb
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# Plain [Inline]
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
data/lib/paru/filter/quoted.rb
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# Quoted QuoteType [Inline]
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# RawBlock Format String
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# RawInline Format String
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# SmallCaps [Inline]
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# SoftBreak
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
data/lib/paru/filter/space.rb
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# Space
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
data/lib/paru/filter/span.rb
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# Span Attr [Inline]
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
data/lib/paru/filter/str.rb
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# Str String
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# Strikeout [Inline]
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
data/lib/paru/filter/strong.rb
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# Strong [Inline]
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# Subscript [Inline]
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# Superscript [Inline]
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
data/lib/paru/filter/table.rb
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
# Table [Inline] [Alignment] [Double] [TableCell] [[TableCell]]
|
|
2
18
|
module Paru
|
|
3
19
|
module PandocFilter
|
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
module Paru
|
|
2
18
|
module PandocFilter
|
|
3
19
|
require_relative "./block"
|
data/lib/paru/filter/target.rb
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
module Paru
|
|
2
18
|
module PandocFilter
|
|
3
19
|
|
data/lib/paru/filter/version.rb
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
module Paru
|
|
2
18
|
module PandocFilter
|
|
3
19
|
require_relative "./node"
|
data/lib/paru/pandoc.rb
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Copyright 2015, 2016 Huub de Beer <Huub@heerdebeer.org>
|
|
2
|
+
#
|
|
3
|
+
# This file is part of Paru
|
|
4
|
+
#
|
|
5
|
+
# Paru is free software: you can redistribute it and/or modify
|
|
6
|
+
# it under the terms of the GNU General Public License as published by
|
|
7
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
# (at your option) any later version.
|
|
9
|
+
#
|
|
10
|
+
# Paru is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
# GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You should have received a copy of the GNU General Public License
|
|
16
|
+
# along with Paru. If not, see <http://www.gnu.org/licenses/>.
|
|
1
17
|
module Paru
|
|
2
18
|
|
|
3
19
|
require "yaml"
|