Stream: IG creation
Topic: URL issue
Alex Goel (Mar 08 2022 at 14:52):
Hi, I'm struggling to get a URL link to an example I've created to work here: https://build.fhir.org/ig/HL7/ihe-sdc-ecc-on-fhir/dataextraction.html#list-item-responses-lir I'm trying to point it at this resource: https://github.com/HL7/ihe-sdc-ecc-on-fhir/blob/main/fsh-generated/resources/Observation-SDCeCCObservationCodeLIR.json but the markdown text is appearing on the webpage
See example: [SDCeCCObservationCodeLIR](Observation-SDCeCCObservationCodeLIR.html)
Grahame Grieve (Mar 08 2022 at 19:44):
where are you putting the link?
Lloyd McKenzie (Mar 08 2022 at 19:48):
Link is in a .md page file - and looks correct syntactically
Lloyd McKenzie (Mar 08 2022 at 19:48):
You can see the source by traversing the github link above.
Grahame Grieve (Mar 08 2022 at 19:52):
then it's a jekyll issue?
Lloyd McKenzie (Mar 08 2022 at 19:55):
I don't know. Maybe?
Grahame Grieve (Mar 08 2022 at 19:56):
what if you remove the '-'?
Jose Costa Teixeira (Mar 08 2022 at 20:20):
I think the issue is in your markdown containing an xml tag
Jose Costa Teixeira (Mar 08 2022 at 20:22):
the url should work fine, and this is no bug in Jira - what is happening is that your markdown here
https://github.com/HL7/ihe-sdc-ecc-on-fhir/blob/main/input/pagecontent/dataextraction.md?plain=1#L23
Jose Costa Teixeira (Mar 08 2022 at 20:22):
has a tag <ListItemResponseFields>
Jose Costa Teixeira (Mar 08 2022 at 20:22):
and that confuses the markdown parser
Jose Costa Teixeira (Mar 08 2022 at 20:23):
@Alex Goel just put the quotes around <ListItemResponseFields>
and it should be fine
(check the source of this post to see what quotes I mean because I don't know how to escape the quotes here
David Pyke (Mar 08 2022 at 20:31):
or change them to < and >
Alex Goel (Mar 09 2022 at 15:15):
Screen-Shot-2022-03-09-at-10.05.56.png < and > made
< ListItemResponseFields >
not show up on local in the html
Same using single quotes.
"\<ListItemResponseFields\>"
this worked! I pushed the change and the link appears correctly now
Alex Goel (Mar 09 2022 at 15:15):
Thanks everyone!
Jose Costa Teixeira (Mar 09 2022 at 15:37):
it's an xml tag, hence the suggestion to use backticks
Last updated: Apr 12 2022 at 19:14 UTC