pub(crate) fn find_keyword_suffix<'a>( haystack: &'a str, keyword: &str, ) -> Option<&'a str>
Find keyword in haystack and return the substring following it, or None if not found.
keyword
haystack
None