15 lines
322 B
Julia
15 lines
322 B
Julia
|
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"
|
||
|
)
|