2017-07-30 16:48:15 +02:00
|
|
|
using BibTeX
|
|
|
|
|
|
|
|
import Documenter
|
|
|
|
Documenter.makedocs(
|
|
|
|
modules = [BibTeX],
|
|
|
|
format = :html,
|
|
|
|
sitename = "BibTeX.jl",
|
|
|
|
root = joinpath(dirname(dirname(@__FILE__)), "docs"),
|
|
|
|
pages = Any["Home" => "index.md"],
|
|
|
|
strict = true,
|
|
|
|
linkcheck = true,
|
|
|
|
checkdocs = :exports,
|
|
|
|
authors = "Brandon Taylor"
|
|
|
|
)
|
2017-07-31 20:33:08 +02:00
|
|
|
|
|
|
|
# just test if it parses (for now)
|
|
|
|
joinpath((@__FILE__) |> dirname |> dirname, "example", "examples.bib") |> readstring |> parse_bibtex
|