com.helger.html.markdown.IMarkdownBlockEmitter Maven / Gradle / Ivy
/**
* Copyright (C) 2014-2016 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.helger.html.markdown;
import java.util.List;
import javax.annotation.Nonnull;
/**
* Block emitter interface. An example for a code block emitter is given below:
*
*
* public void emitBlock (StringBuilder out, List <String> lines, String meta)
* {
* out.append ("<pre><code>");
* for (final String s : lines)
* {
* for (int i = 0; i < s.length (); i++)
* {
* final char c = s.charAt (i);
* switch (c)
* {
* case '&':
* out.append ("&");
* break;
* case '<':
* out.append ("<");
* break;
* case '>':
* out.append (">");
* break;
* default:
* out.append (c);
* break;
* }
* }
* out.append ('\n');
* }
* out.append ("</code></pre>\n");
* }
*
*
* @author René Jeschke <[email protected]>
* @since 0.7
*/
public interface IMarkdownBlockEmitter
{
/**
* This method is responsible for outputting a markdown block and for any
* needed pre-processing like escaping HTML special characters.
*
* @param out
* The StringBuilder to append to
* @param lines
* List of lines
* @param meta
* Meta information as a single String (if any) or empty String
*/
void emitBlock (@Nonnull MarkdownHCStack out, @Nonnull List lines, @Nonnull String meta);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy