package net.rubygrapefruit.docs.model; /** * An inline element. */ public interface Inline { /** * Returns the text content of this element with all markup removed. * * @return the text content */ String getText(); }