Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
bgruening committed Dec 12, 2024
1 parent 0eda150 commit 32c37cf
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tools/wordcloud/wordcloud.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,15 @@
<param argument="--text" type="data" format="txt" label="Input file" help="Input file to process"/>
<param argument="--stopwords" type="data" format="txt" optional="true" label="Stopwords file" help="Specify file of stopwords (containing one word per line) to remove from the given text after parsing"/>
<param argument="--fontfile" type="data" format="binary" optional="true" label="Font file you wish to use " help="The font file you want to use"/>
<param argument="--min_font_size" type="integer" value="4" min="1" optional="true" label=" Smallest font size to use" />
<param argument="--min_font_size" type="integer" min="1" value="4" optional="true" label=" Smallest font size to use" />
<param argument="--max_font_size" type="integer" min="1" optional="true" label="Maximum font size for the largest word" />
<param argument="--font_step" value="1" type="integer" label="Step size for the font" help="Font_step &gt; 1 might speed up computation but give a worse fit"/>
<param argument="--font_step" type="integer" value="1" label="Step size for the font" help="Font_step &gt; 1 might speed up computation but give a worse fit"/>
<param argument="--min_word_length" type="integer" value="0" optional ="True" label="Minimum number of letters a word must have to be included"/>
<param argument="--max_words" type="integer" value="200" min="1" optional="true" label="Maximum number of words"/>
<param argument="--width" type="integer" value="400" min="1" optional="true" label="Define output image width"/>
<param argument="--height" type="integer" value="200" min="1" optional="true" label="Define output image height"/>
<param argument="--margin" value="2" type="integer" label="Spacing to leave around words"/>
<param argument="--background" type="color" optional="true" value="#000000" label="Use given color as background color for the image">
<param argument="--max_words" type="integer" min="1" value="200" optional="true" label="Maximum number of words"/>
<param argument="--width" type="integer" min="1" value="400" optional="true" label="Define output image width"/>
<param argument="--height" type="integer" min="1" value="200" optional="true" label="Define output image height"/>
<param argument="--margin" type="integer" value="2" label="Spacing to leave around words"/>
<param argument="--background" type="color" value="#000000" optional="true" label="Use given color as background color for the image">
<validator type="regex" message="Please select a valid RGB color">[#][0-9A-Fa-f]{6}</validator>
</param>
<param argument="--mask" type="data" format="png" optional="true" label="Mask to use for the image form"/>
Expand All @@ -106,7 +106,7 @@
<option value="colormask">Color Mask</option>
</param>
<when value="color">
<param argument="--color" type="color" optional="true" value="#00FF00" label="Use given color as coloring for the image">
<param argument="--color" type="color" value="#00FF00" optional="true" label="Use given color as coloring for the image">
<validator type="regex" message="Please select a valid RGB color">[#][0-9A-Fa-f]{6}</validator>
</param>
</when>
Expand Down Expand Up @@ -139,7 +139,7 @@
<option value="BuGn">BuGn</option>
<option value="YlGn">YlGn</option>
</param>
<param argument="--mode" type="select" value="RGB" optional ="True" label="Use RGB or RGBA for transparent background">
<param argument="--mode" type="select" value="RGB" optional="True" label="Use RGB or RGBA for transparent background">
<option value="RGB">RGB</option>
<option value="RGBA">RGBA</option>
</param>
Expand Down

0 comments on commit 32c37cf

Please sign in to comment.