blob: e37a864b3b4b7b83ab80e2d963c4f4c53f171442 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 David Green.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* David Green - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.wikitext.commonmark.internal.inlines;
import org.eclipse.mylyn.wikitext.commonmark.internal.Line;
import org.eclipse.mylyn.wikitext.parser.DocumentBuilder;
public class HardLineBreak extends Inline {
public HardLineBreak(Line line, int offset, int length) {
super(line, offset, length);
}
@Override
public void emit(DocumentBuilder builder) {
builder.lineBreak();
}
}