Skip to content

Commit e8c75fb

Browse files
fix: close missing > on Joomla-exported [Poster](</images/...) attachment links (#81)
The Joomla export wrote markdown links with an angle-bracket-wrapped URL that's missing its closing >, e.g. `[Poster](</images/foo.png)`. Marked silently treats those as a link with literal text, so the Poster anchor on community/events rendered as a non-link (the symptom reported in #81). Add the closing > and also copy the four event posters plus the Biocuration 2025 poster into public/images so the URLs resolve on beta without depending on reactome.org.
1 parent da407c4 commit e8c75fb

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

projects/website-angular/content/community/events.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ HUPO, November 9-13th, 2025
1717

1818
Disease Maps Community Meeting April 15-17th , 2025
1919

20-
International Society of Biocuration, April 5-9th, 2025.[ Poster.](</images/2025_Biocuration_Marc_180by95.jpg)
20+
International Society of Biocuration, April 5-9th, 2025. [Poster.](</images/2025_Biocuration_Marc_180by95.jpg>)
2121

2222
ASHG2025, October 14-18th, 2025
2323

@@ -27,13 +27,13 @@ Jobim conference, July 8-11th, 2025
2727

2828
NIH Bioinformatics "CCR Collaborative Bioinformatics Resource (CCBR)" Virtual Meeting, Jan 9 2024
2929

30-
Keystone Symposia: Single-Cell Biology: Tissue Genomics, Technology and Disease, Jan 21-24 2024. [Poster](</images/events/Reactome_GSA.png)
30+
Keystone Symposia: Single-Cell Biology: Tissue Genomics, Technology and Disease, Jan 21-24 2024. [Poster](</images/events/Reactome_GSA.png>)
3131

3232
NIH Bioinformatics Training and Education Program Virtual Meeting, Feb14 2024[ Link to recording.](<https://cbiit.webex.com/recordingservice/sites/cbiit/recording/50f4927dad80103cbfd5005056812f37/playback>)
3333

3434
EMBL-EBI Training: Introduction to RNA-seq and functional interpretation, Feb 24 2024
3535

36-
Keystone Symposia: Systems and Engineered Biology. The Reactome Knowledgebase: a resource for systems immunology and innate immunity research April 9, 2024. [Poster](</images/events/Reactome_Keystone_Immunology.png).
36+
Keystone Symposia: Systems and Engineered Biology. The Reactome Knowledgebase: a resource for systems immunology and innate immunity research April 9, 2024. [Poster](</images/events/Reactome_Keystone_Immunology.png>).
3737

3838
National Library of Medicine Bioinformatics and Clinical Informatics Program Fellowship, April 18, 2024
3939

@@ -69,7 +69,7 @@ Front Line Genomics: Invited Speaker, July 16th, 2024
6969

7070
EMBL-EBI Training: Proteomics bioinformatics, July 19 2024
7171

72-
Society of Developmental Biology Meeting, July 17 2024. [Poster](</images/events/2024_DevBio_116x120_no-abstract.jpg)
72+
Society of Developmental Biology Meeting, July 17 2024. [Poster](</images/events/2024_DevBio_116x120_no-abstract.jpg>)
7373

7474
Online Webinar for Front Line Genomics: Integrative Multi-omics using July 17, 2024, Reactome GSA. [Link to Recording.](<https://app.livestorm.co/front-line-genomics/multi-omics-unleashed-webinar-2-enhancing-your-multi-omic-workflows-with-data-integration/live?s=7f203310-f5d0-4727-b1e3-dbbc83a6b7ca>)
7575

@@ -119,7 +119,7 @@ UniAndes: Reactome Introduction
119119

120120
EMBL-EBI network resources
121121

122-
ISCB RSGDream2024 Conference. [Link](<https://www.youtube.com/watch?v=cXuHUgdIILE&ab_channel=ReactomeKnowledgebase>). [Poster](</images/events/Reactome_IDG.png).
122+
ISCB RSGDream2024 Conference. [Link](<https://www.youtube.com/watch?v=cXuHUgdIILE&ab_channel=ReactomeKnowledgebase>). [Poster](</images/events/Reactome_IDG.png>).
123123

124124
University of Toronto: Medicine By Design Symposium
125125

projects/website-angular/content/documentation/dev/content-service/diagram-exporter.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This tutorial will walk you through the simple steps of using this tool to gener
1616
Generating the image of a diagram using our API is as easy as just calling the service with the identifier of the diagram and the desired extension (for example ".png", ".jpg" etc.)
1717

1818

19-
[/ContentService/exporter/diagram/R-HSA-169911.png](</ContentService/exporter/diagram/R-HSA-169911.png)
19+
[/ContentService/exporter/diagram/R-HSA-169911.png](</ContentService/exporter/diagram/R-HSA-169911.png>)
2020

2121
![Figure 1](/uploads/documentation/dev/content-service/diagram-exporter/Fig1.png)
2222

@@ -30,14 +30,14 @@ This will export the image in the default quality. To get an image in print qual
3030
In case the requested pathway has an interactive illustration (EHLD) associated with it, the diagram exporter will export the illustration as an image. In the following example, the EHLD of Hemostasis is requested in png format. Follow this [link](</documentation/icon-info>) if you are interested to learn more about our EHLDs.
3131

3232

33-
[/ContentService/exporter/diagram/R-HSA-109582.png](</ContentService/exporter/diagram/R-HSA-109582.png)
33+
[/ContentService/exporter/diagram/R-HSA-109582.png](</ContentService/exporter/diagram/R-HSA-109582.png>)
3434

3535
![Figure 3](/uploads/documentation/dev/content-service/diagram-exporter/Fig3.png)
3636

3737
If you are interested in a particular reaction or entity, just write it and the service will show it selected in its containing pathway.
3838

3939

40-
[/ContentService/exporter/diagram/R-HSA-68919.png](</ContentService/exporter/diagram/R-HSA-68919.png)
40+
[/ContentService/exporter/diagram/R-HSA-68919.png](</ContentService/exporter/diagram/R-HSA-68919.png>)
4141

4242
![R-HSA-68919](/uploads/documentation/dev/content-service/diagram-exporter/R-HSA-68919.png)
4343

938 KB
Loading
1.77 MB
Loading
589 KB
Loading
547 KB
Loading
648 KB
Loading

0 commit comments

Comments
 (0)