[][src]Function parse_hyperlinks::parser::restructured_text::rst_link_ref

pub fn rst_link_ref(i: &str) -> IResult<&str, (String, String)>

Parser and transform RestructuredText link references. The parser expects to start at the beginning of the line. Here some examples for link references: See the Python home page_ for info. .. _Python home page: http://www.python.org .. _Python: home page: http://www.python.org See unit test test_rst_link_ref()for more examples.