diff --git a/.woodpecker/docs.yaml b/.woodpecker/docs.yaml index 118cf10..7bc8f11 100644 --- a/.woodpecker/docs.yaml +++ b/.woodpecker/docs.yaml @@ -2,13 +2,6 @@ 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 be15aa4..7df66fc 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 +```jldoctest; filter = r"[0-9A-Z]{26}" => "7ZK00JECBDF2H7GNBXN59C6S9S" julia> base30encode(30) "10" -``` -```julia-repl -julia> using UUIDs; base30encode(uuid1()) +julia> using UUIDs + +julia> base30encode(UUIDs.uuid1()) "7ZK00JECBDF2H7GNBXN59C6S9S" ```