Switch to released pandoc-lua-marshal-0.1.2
Cell values are now marshaled as userdata objects; a constructor function for table cells is provided as `pandoc.Cell`.
This commit is contained in:
parent
20eb8ac7fd
commit
3e7b46af64
5 changed files with 12 additions and 8 deletions
|
@ -3,11 +3,6 @@ tests: True
|
|||
flags: +embed_data_files
|
||||
constraints: aeson >= 2.0.1.0
|
||||
|
||||
source-repository-package
|
||||
type: git
|
||||
location: https://github.com/pandoc/pandoc-lua-marshal.git
|
||||
tag: c24be07a51a6fd5ea2e1ec244b8caf220cea5ce4
|
||||
|
||||
-- source-repository-package
|
||||
-- type: git
|
||||
-- location: https://github.com/jgm/texmath.git
|
||||
|
|
|
@ -1769,6 +1769,15 @@ Fields:
|
|||
: number of rows occupied by the cell; the height of the cell
|
||||
(integer).
|
||||
|
||||
`identifier`
|
||||
: alias for `attr.identifier` (string)
|
||||
|
||||
`classes`
|
||||
: alias for `attr.classes` ([List] of strings)
|
||||
|
||||
`attributes`
|
||||
: alias for `attr.attributes` ([Attributes])
|
||||
|
||||
### Citation {#type-citation}
|
||||
|
||||
Single citation entry
|
||||
|
|
|
@ -481,7 +481,7 @@ library
|
|||
mtl >= 2.2 && < 2.3,
|
||||
network >= 2.6,
|
||||
network-uri >= 2.6 && < 2.8,
|
||||
pandoc-lua-marshal >= 0.1.1 && < 0.2,
|
||||
pandoc-lua-marshal >= 0.1.2 && < 0.2,
|
||||
pandoc-types >= 1.22.1 && < 1.23,
|
||||
parsec >= 3.1 && < 3.2,
|
||||
pretty >= 1.1 && < 1.2,
|
||||
|
|
|
@ -115,6 +115,7 @@ otherConstructors =
|
|||
, mkAttributeList
|
||||
, mkBlocks
|
||||
, mkCitation
|
||||
, mkCell
|
||||
, mkInlines
|
||||
, mkListAttributes
|
||||
, mkSimpleTable
|
||||
|
|
|
@ -26,6 +26,7 @@ extra-deps:
|
|||
- lua-2.0.2
|
||||
- tasty-hslua-1.0.0
|
||||
- tasty-lua-1.0.0
|
||||
- pandoc-lua-marshal-0.1.2
|
||||
- pandoc-types-1.22.1
|
||||
- commonmark-0.2.1.1
|
||||
- commonmark-extensions-0.2.2
|
||||
|
@ -36,8 +37,6 @@ extra-deps:
|
|||
- unicode-data-0.2.0
|
||||
- git: https://github.com/jgm/ipynb.git
|
||||
commit: 00246af10885c2ad4413ace4f69a7e6c88297a08
|
||||
- git: https://github.com/pandoc/pandoc-lua-marshal.git
|
||||
commit: c24be07a51a6fd5ea2e1ec244b8caf220cea5ce4
|
||||
ghc-options:
|
||||
"$locals": -fhide-source-paths -Wno-missing-home-modules
|
||||
resolver: lts-18.10
|
||||
|
|
Loading…
Add table
Reference in a new issue