Code Monkey home page Code Monkey logo

Comments (2)

jyn514 avatar jyn514 commented on June 12, 2024 1

I wrote this up already, so pasting here:

Currently, intraconv will replace all items with only their name:

-//! [instrument]: attr.instrument.html

This leads to ambiguity if the same name is present in multiple namespaces:

warning: `instrument` is both a function and an attribute macro
 --> tracing-attributes/src/lib.rs:5:23
  |
5 | //! [`#[instrument]`][instrument] procedural macro attribute.
  |                       ^^^^^^^^^^ ambiguous link

It would be great to add a disambiguator so these didn't have to be fixed manually. The following transformations should work:

"mod" => "mod@", // this one needs to be different because of primitives
"struct" | "enum" | "trait" | "union" | "type" |  => "type@", // technically these should use struct@, etc. but it's non-idiomatic to use a lowercase name so it shouldn't come up in practice
"const" | "static" | "value" => "value@",
"fn" => "()",
"derive" | "attr" => "macro@",
"macro" => "!",

There might be more I haven't thought of but this should hit the common cases. Places to look at in rustdoc:
https://github.com/rust-lang/rust/blob/master/src/librustdoc/passes/collect_intra_doc_links.rs#L1281-L1320
https://github.com/rust-lang/rust/blob/master/src/librustdoc/formats/item_type.rs#L127-L156

from cargo-intraconv.

poliorcetics avatar poliorcetics commented on June 12, 2024

I just pushed a fix for it, don't hesitate to open a new issue/reopen the existing one if you find failing cases.

from cargo-intraconv.

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.