Giter VIP home page Giter VIP logo

Comments (2)

Tokazama avatar Tokazama commented on July 22, 2024

I have an update on this that seems to be working but is also pretty hacky. I realized that the problem I was having was that the docstring for my type occurred before the data necessary for the abbreviation was available. In other words the following example wouldn't be able to grab info from get_doc (what I'm doing is a lot more complex but this is the closest to a MWE I could get).

"""
MyType
$(MYABBREVIATION)
"""
struct MyType end

get_doc(::MyType) = "some documentation")

What I do later is similar to

d = @doc MyType
first(d.meta[:results]).object = nothing

I think the reason this works is because when parsedoc is called it doesn't actually parse the docstring unless docstring.object === nothing. So this forces it to parse the docstring again.

This seems like a pretty unsafe solution though and it would be cool if there was a way to work around this safely.

from docstringextensions.jl.

mortenpi avatar mortenpi commented on July 22, 2024

We don't have any publicly defined API for this purpose, but if you or someone else would like to take a stab at designing and implementing it, I think it would be a good addition to the package.

I think the reason this works is because when parsedoc is called it doesn't actually parse the docstring unless docstring.object === nothing. So this forces it to parse the docstring again.

This is correct -- the parsed docstring gets cached. However, the caching only happens when you try do look up the docstring, e.g. in the REPL. So if your custom abbreviation is registered before that happens, like during the parsing of your package/module, it should work.

from docstringextensions.jl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.