-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sbachmei/mic 5561/docstring linking #141
Conversation
7e50cd2
to
b657e22
Compare
@@ -1,3 +1,12 @@ | |||
.wy-nav-content { | |||
max-width: 1000px !important; | |||
} | |||
/* make links red and bold */ | |||
code.xref { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This makes cross-references (which I think are only things like :class:, :meth:, etc) red instead of black
src/easylink/configuration.py
Outdated
A ``Config`` is a container that includes the combination of the user-provided | ||
pipeline, input data, and computing environment specifications. It is a nested |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit:
A ``Config`` is a container that includes the combination of the user-provided | |
pipeline, input data, and computing environment specifications. It is a nested | |
A ``Config`` is an object that contains the user-provided specifications for the | |
pipeline, input data, and computing environment. It is a nested |
|
||
Parameters | ||
---------- | ||
pipeline_specification | ||
The path to the pipeline specification yaml file. | ||
The path to the pipeline specification file. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we say somewhere else what these specifications files are supposed to look like?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not yet, no. I'd imagine that will show up in a concept or the quickstart or soemthing at some point. I just didn't feel the need to specify yaml here in case it ever does change or we support different formats
Improve docstring linking
Description
Changes and notes
We agreed as a team that the first mention of an external object should belinked and then all others can simply be double backticked. This does that.
I also reversed the colors between a linked object and highlighed so that
links are red and highlighted (double backticked) are black.
Verification and Testing