UMLet Bold Face Single Word

5.4k Views Asked by At

I need to figure out if there is a way in UMLet to apply boldfacing to a single word without imposing a line break. For example:

read(out value)

I don't see any way to do this. Does anyone know? Thanks!

2

There are 2 best solutions below

2
On

To create a bold words just use

**words that should be bold**

For more information check out:

http://sourceforge.net/p/umlettosourceco/discussion/markdown_syntax

So in your example

read(**out** value)
0
On

For now (UMLet 14.2) it isn't possible to format a single word.

The implementation is looking for formating markups at start and end of the text (line).

https://github.com/umlet/umlet/blob/14a41c6ba3bc616ed5078357b532deb938bab837/umlet-elements/src/main/java/com/baselet/control/StringStyle.java#L48