Skip to content

Change imports to work with functored AST #8084

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

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
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
10 changes: 10 additions & 0 deletions cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,13 @@ source-repository-package
type: git
location: https://github.com/jgm/citeproc
tag: cb54223919ecd327250f1b167e4e0c61473f402e

source-repository-package
type: git
location: https://github.com/obsidiansystems/pandoc-types
tag: e57d3137776a64bb145d0c11d88255f86dc7420a

source-repository-package
type: git
location: https://github.com/obsidiansystems/pandoc-lua-marshal
tag: 00730767bfe3e13dc067885d516e904cb0e6e9dd
3 changes: 2 additions & 1 deletion src/Text/Pandoc/Writers/Docx/Table.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE PatternSynonyms #-}
{-# LANGUAGE ScopedTypeVariables #-}
{- |
Module : Text.Pandoc.Writers.Docx.Table
Expand All @@ -19,7 +20,7 @@ import Data.Array ( elems, (!), assocs, indices )
import Data.Text (Text)
import Text.Pandoc.Definition
( ColSpec,
Caption(Caption),
pattern Caption,
Format(Format),
Attr,
Block(Para, Plain),
Expand Down