diff --git a/docs/make.jl b/docs/make.jl index bc0d99b..4786357 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -14,7 +14,7 @@ makedocs(; edit_link="main", assets=String[], ), - example_size_threshold=0, + kwargs=[example_size_threshold=0], pages=[ "Home" => "index.md", ], diff --git a/docs/src/man/examples.md b/docs/src/man/examples.md index efdfce5..550db5f 100644 --- a/docs/src/man/examples.md +++ b/docs/src/man/examples.md @@ -18,18 +18,18 @@ using DataFrames ```@example examples output = KEGGAPI.conv("eco", "ncbi-geneid"); -DataFrame( +first(DataFrame( output.data, output.colnames -) +), 20) ``` ```@example examples output = KEGGAPI.conv("ncbi-geneid", "eco"); -DataFrame( +first(DataFrame( output.data, output.colnames -) +), 20) ``` ```@example examples