Giter Club home page Giter Club logo

Comments (2)

lrhn avatar lrhn commented on August 15, 2024

This is tricky because [List<int>] is special DartDoc syntax, not CommonMark syntax.

The CommonMark interpretation is to treat the [ and ] literally, unless you have a

[List<int>]: linkTarget

declaration somewhere in the file. Then it is a shorthand link. (Which means parsing is not context free.)

In either case the <int> will be considered an HTML tag when rendered.

If DartDoc replaces remaining [List<int>]s by something else, then ... we probably need to figure out which criteria are used for that, and which approach is used to find the tags in the DartDoc code.
(Does it do Commonmark parsing first, then look for remaining [...]s which were not parsed as a link? if so, is the contents of [...] already markdown parsed too? Has it removed the unknown HTML tag <int> like it would remove <int> outside of a [...]? Is that why it works? Does [List<div>] work the same?)

Doesn't feel like a slam-dunk, but we probably can recognize \[[^`[\]]*\](?![([]) to ignore the contents of the [...]. It just won't find

Is [foo<upper>2</upper>] valid?

[foo<upper>2</upper>]: https://example.com

where you intended to write <sup> instead of <upper>.

from sdk.

natebosch avatar natebosch commented on August 15, 2024

I found an example where this might be the best way to write it.

https://github.com/dart-lang/tools/blob/d563c38c7cfb03bbf5d1f9360b49c36ba45b97ef/pkgs/graphs/lib/src/topological_sort.dart#L38

Here its useful to link to the exception since it's novel, and it's useful to include the detail of the generic matching the generic on the method call. I can't find a way like prefer to phrase it where these aren't the same word.

from sdk.

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.