001package org.hl7.fhir.r5.renderers; 002 003import org.hl7.fhir.exceptions.FHIRException; 004import org.hl7.fhir.r5.model.PrimitiveType; 005 006public interface IMarkdownProcessor { 007 008 @SuppressWarnings("rawtypes") 009 public String processMarkdown(String location, PrimitiveType md) throws FHIRException; 010 011 public String processMarkdown(String location, String text) throws FHIRException; 012 013}