| 792 | use super::*; |
| 793 | |
| 794 | pub trait Markdown { |
| 795 | fn markdown( |
| 796 | &self, |
| 797 | locale: Locale, |
| 798 | actor_name: &str, |
| 799 | context: Option<&ExternalId>, |
| 800 | ) -> String; |
| 801 | } |
| 802 | |
| 803 | impl LinkInfo { |
| 804 | fn markdown(&self) -> String { |
nothing calls this directly
no outgoing calls
no test coverage detected