-
Notifications
You must be signed in to change notification settings - Fork 573
Better view to source version #447
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
Better view to source version #447
Conversation
8667029
to
e5a5a37
Compare
e5a5a37
to
62d4a34
Compare
Hello @khos2ow! I think that I've missed something here Is this PR ok? |
Oh shoot! I've completely missed this one! I'll check it soon. |
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.
Thank you @edgarsandi, overall this looks ok, but please check my comment below. That was one of the main concerns and potentially might be a bit tricky to implement. Please feel free to discuss your thoughts and ideas.
@@ -60,6 +60,7 @@ followed by another line of text. | |||
| bar | baz | 4.5.6 | | |||
| foo | bar | 1.2.3 | | |||
| baz | baz | 4.5.6 | | |||
| foobar | [email protected]:module/path | v7.8.9 | |
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.
One of the main problem mentioned at #427 (comment), is that this will become a "clickable email" address. The following for makrdown
and asciidoc
is preferred:
| foobar | [email protected]:module/path | v7.8.9 | | |
| foobar | [[email protected]:module/path](https://github.com/module/path) | v7.8.9 | |
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.
Hi! yes, it's a bit hard to implement, but I'll try! tks!
Following up I think we need to have a clickable hyperlink for module sources when:
The rest can be shown as is. Take a look at Module Sources for complete list of available sources. |
@edgarsandi I think we can ignore the hyperlink of modules for now and we can circle back to it on a separate PR. If you don't mind please rebase on master and fix the conflict and we can get this merged. |
Hi @khos2ow I totally agree, seems other (and more complex) problem, I'll do the rebase and fix de conflicts |
Signed-off-by: Edgar R. Sandi <[email protected]>
62d4a34
to
0284283
Compare
Add / separate the module version from module source when using
?ref=
With this pull request, we split the version from source when selecting a revision (ref argument) and put it in the Version column
xref: #427
Before
With this PR
I have:
make test
.@khos2ow