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