Example #1
0
 protected override void EndProcessing()
 {
     try
     {
         var node = ModelHelper.BlockQuote(GetInfo(), Title);
         node.Content = _Content.ToArray();
         WriteObject(node);
     }
     finally
     {
         _Content.Clear();
     }
 }
 internal BlockQuote BlockQuote(string info, string title)
 {
     return(ModelHelper.BlockQuote(info, title));
 }