src/main/java/com/atlassian/uwc/converters/sharepoint/BoldConverter.java [26:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	protected String convertBold(String input) {
		//get the elements
		Element root = getRootElement(input, false);
		String search = "strong";
		String replace = "*";
		//look the through the elements, and make changes
		Element changed = simpleTransform(root, search, replace);
		changed = simpleTransform(changed, "b", replace);
		//turn elements back into a string
		String converted = toString(changed);
		//ignore whitespace
		converted = removeWhitespaceOnlyConversions(converted, replace);
		return converted;
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/atlassian/uwc/converters/sharepoint/EmphasisConverter.java [26:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	protected String convertEmphasis(String input) {
//		get the elements
		Element root = getRootElement(input, false);
		String search = "em";
		String replace = "_";
		//look the through the elements, and make changes
		Element changed = simpleTransform(root, search, replace);
		changed = simpleTransform(changed, "i", replace);
		//turn elements back into a string
		String converted = toString(changed);

		converted = removeWhitespaceOnlyConversions(converted, replace);
		return converted;
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



