InnerSourceCommons / managing-innersource-projects

Managing InnerSource Projects book

Home Page:https://innersourcecommons.gitbook.io/managing-innersource-projects/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bug rendering markdown introduced by changes to GitHub rendering

jeffabailey opened this issue · comments

Might have been introduced by changes to GitHub rendering?

https://github.com/InnerSourceCommons/managing-innersource-projects/blob/main/measuring/use_gqm.md

image

Need to change code to use the click directive instead of adding the raw href in the name of graph items.

https://mermaid.js.org/syntax/flowchart.html#interaction

e.g.

flowchart LR
    A-->B
    B-->C
    C-->D
    click A callback "Tooltip for a callback"
    click B "https://www.github.com" "This is a tooltip for a link"
    click C call callback() "Tooltip for a callback"
    click D href "https://www.github.com" "This is a tooltip for a link"