DocStringExtensions.jl icon indicating copy to clipboard operation
DocStringExtensions.jl copied to clipboard

Extensions for Julia's docsystem.

Results 34 DocStringExtensions.jl issues
Sort by recently updated
recently updated
newest added

This seems like a great package! One thing that's really missing is an example of how to use each and every functionality. Ideally, this would be a single page with...

Type: Documentation
up for grabs

* Update Documenter.jl compat * Fix doctests

Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. Release notes Sourced from actions/cache's releases. v4.0.0 What's Changed Update action to node20 by @​takost in actions/cache#1284 feat: save-always flag by @​to-s in actions/cache#1242...

dependencies

This is not (yet) a feature request, just asking for advice on using this package. Sometimes the *value* of an argument is not directly relevant, as the body uses their...

Is it possible to override a set template for a particular docstring? In particular, my template involves `$TYPEDSIGNATURES`, and in a couple of exceptional cases, I would rather omit those...

I would like a docstring for my many-method functions to look like: ```md f(x::Int, y::Float) Does something with `x` and `y`. defined at [blah.jl:100](link) - - - f(x::String) Does something...

As mentioned in the original typedsignatures issue: https://github.com/JuliaDocs/DocStringExtensions.jl/issues/20#issuecomment-461420993 generic julia code often doesn't have a definite return type. Would it be possible to either customize `TYPEDSIGNATURES` to omit this (or...

This happens whether the function is `@generated`, or defined with `if @generated ...` method. ```julia_repl julia> using DocStringExtensions julia> begin """ $TYPEDSIGNATURES example """ @generated function example(x) :(return x) end...

WIP for #150 Essentially just copying the code from `MethodList` and creating `TypedMethodList` Then inserting a copy of a section of typed signatures into the right spot @MichaelHatherly, let me...

Since v"1.8.0" its possible to annotate a mutable struct's field with the `const` keyword. If you do, DocStringExtensions `FIELDS`, `TYPEDFIELDS` fail: docstrings are only parsed for mutable fields. Here is...