summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Render.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Render.hs b/src/Render.hs
index 146b68d..7b8bab2 100644
--- a/src/Render.hs
+++ b/src/Render.hs
@@ -10,6 +10,7 @@ import Data.Maybe (catMaybes)
import qualified Data.Text as T
import Data.Text.Encoding (decodeUtf8)
import Text.BibTeX.Entry as E
+import Text.BibTeX.Format (entry)
import qualified Data.Map as M
import Text.Parsec.Error
import Text.ParserCombinators.Parsec.Prim
@@ -114,6 +115,8 @@ bibentry bib = do
span_ [class_ "author"] $ htmlLookup "author"
", "
span_ [class_ "year"] $ htmlLookup "year"
+ " "
+ button_ [type_ "button", class_ "btn btn-light btn-sm", data_ "toggle" "popover", title_ "BibTeX", data_ "content" $ T.pack $ entry bib] "BibTeX"
-- | References section
references :: [E.T] -> Html ()