aboutsummaryrefslogtreecommitdiffstats
path: root/src/parser/pest_rst.rs
blob: 74199a82774b9409b116448d842b0b75357fb70c (plain)
1
2
3
4
5
6
7
#![allow(clippy::redundant_closure)]

use pest_derive::Parser;

#[derive(Parser)]
#[grammar = "rst.pest"]
pub struct RstParser;