From 8f0229dce328a73043bea41e93f8404aff7686dc Mon Sep 17 00:00:00 2001 From: Nicholas Date: Fri, 3 May 2024 21:33:07 -0400 Subject: [PATCH] ENVY-2 Testing examples. --- docs/make.jl | 2 +- docs/src/man/examples.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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