# Random test of stuff. ```graphviz digraph G { rankdir="TB" compound="true" penwidth = 1 fontname = "helvetica" "Misinformation" [ label = "Why people believe\nmisinformation" URL="https://scibeh.org" fillcolor="red:white" style=filled color=black fontcolor = black fontname = "helvetica" fontsize = 12 shape=component ] "Narrative" [ label = "Set the narrative" URL="https://scibeh.org" bgcolor="green:white" style=dashed color=black fontcolor=black fontname = "helvetica" fontsize=12 shape=folder ] "Principles" [ label = "Basic\nprinciples" shape = egg ] "Vaccine" [ label = "Advice and\nrecommendations" ] "Combat" [ label = "Combat\nmisinformation" shape = egg ] "Discourse" [ label = "Track the\discourse" shape = egg style = "invis" ] subgraph cluster {label="Inoculate" style="filled,rounded" fillcolor="cyan:white" node []"Misinformation"; node []"Combat"; inoc_DUMMY [shape=point style=invis width="0px"] } subgraph cluster2 {label="VaxTalk" style="dotted,rounded" bgcolor="orange:white" node []"Narrative"; node []"Discourse"; vax_DUMMY [shape=point style=invis spline="line" width="0px"] } subgraph cluster3 {label="Plan" style="filled,rounded" fillcolor="green:white" node[]"Vaccine"; node[style = "invis" width = "1.6px"]" " plan_DUMMY [shape=point style=invis width = "0px"] } subgraph cluster4 {label="Behavioural change" style="filled,rounded" fillcolor="yellow:white" node[]"Principles"; node[style="invis" width="1.5px"]"" beh_DUMMY[shape=point style=invis width="0px"] } vax_DUMMY -> beh_DUMMY [ style=invis ] inoc_DUMMY -> plan_DUMMY [style=invis] } ```