blob: a7f2f4b9d1ad646671e9f665f9ab42a44ea7bb2a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2016 Max Rydahl Andersen and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Stefan Seelmann - initial API and implementation
* Max Rydahl Andersen - copied from markdown to get base for asciidoc, Bug 474084
*******************************************************************************/
package org.eclipse.mylyn.internal.wikitext.asciidoc.core.block;
import org.eclipse.mylyn.wikitext.core.parser.Attributes;
import org.eclipse.mylyn.wikitext.core.parser.DocumentBuilder.BlockType;
import org.eclipse.mylyn.wikitext.core.parser.markup.Block;
/**
* AsciiDoc default paragraph.
*
* @author Stefan Seelmann
* @author Max Rydahl Andersen - based/copied from markdown to adopt for asciidoc
*/
public class ParagraphBlock extends Block {
private int blockLineCount = 0;
@Override
public boolean canStart(String line, int lineOffset) {
blockLineCount = 0;
return true;
}
@Override
protected int processLineContent(String line, int offset) {
// start of block
if (blockLineCount == 0) {
builder.beginBlock(BlockType.PARAGRAPH, new Attributes());
}
// empty line: start new block
if (markupLanguage.isEmptyLine(line)) {
setClosed(true);
return 0;
}
for (Block block : markupLanguage.getParagraphBreakingBlocks()) {
if (block.canStart(line, offset)) {
setClosed(true);
return offset;
}
}
// next line, does not convert to line break
if (blockLineCount > 0) {
builder.characters("\n"); //$NON-NLS-1$
}
getMarkupLanguage().emitMarkupLine(getParser(), state, line, offset);
blockLineCount++;
return -1;
}
@Override
public void setClosed(boolean closed) {
if (closed && !isClosed()) {
builder.endBlock();
builder.characters("\n"); //$NON-NLS-1$
}
super.setClosed(closed);
}
}