diff --git a/.woodpecker/docs.yaml b/.woodpecker/docs.yaml index 7bc8f11..118cf10 100644 --- a/.woodpecker/docs.yaml +++ b/.woodpecker/docs.yaml @@ -2,6 +2,13 @@ when: branch: master event: push +clone: + git: + image: woodpeckerci/plugin-git + settings: + partial: false + depth: 0 + steps: docs: image: julia:1 diff --git a/src/Base30.jl b/src/Base30.jl index 7df66fc..be15aa4 100644 --- a/src/Base30.jl +++ b/src/Base30.jl @@ -82,13 +82,13 @@ value of the `UUID` is passed directly into the method. # Examples -```jldoctest; filter = r"[0-9A-Z]{26}" => "7ZK00JECBDF2H7GNBXN59C6S9S" +```jldoctest julia> base30encode(30) "10" +``` -julia> using UUIDs - -julia> base30encode(UUIDs.uuid1()) +```julia-repl +julia> using UUIDs; base30encode(uuid1()) "7ZK00JECBDF2H7GNBXN59C6S9S" ```