Skip to content

Instantly share code, notes, and snippets.

View cbeleites's full-sized avatar

Claudia Beleites cbeleites

  • Claudia Beleites Chemometrix GmbH
  • Germany
View GitHub Profile
@cbeleites
cbeleites / markdown documentation regexps
Last active June 9, 2020 14:56
Regexps to help with
# \code{link[package]{f}} -> [package::f()]
\\code{\\link\[([^]]*)\]\{([^}]*)\}\}
[\1::\2()]
#\code{link{f}} -> [f()] untested
\\code{\\link\{([^}]*)\}\}
[\1()]
# \code{} -> ``
\\code{([^}]*)\}