diff --git a/README.md b/README.md index bf5870e..a50b360 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ Note that boolean-type attributes don't require you to put the actual true/false - `width` - `number`: Equivilent to calling `imagewidget.setWidth(...)`. - `height` - `number`: Equivilent to calling `imagewidget.setHeight(...)`. -- takes no children +- `` takes no children #### ImageButton @@ -114,7 +114,7 @@ Note that boolean-type attributes don't require you to put the actual true/false - `width` - `number`: Equivilent to calling `imagewidget.setWidth(...)`. - `height` - `number`: Equivilent to calling `imagewidget.setHeight(...)`. -- takes no children +- `` takes no children #### Border @@ -126,7 +126,7 @@ Note that boolean-type attributes don't require you to put the actual true/false - `color` - `[number, number, number, number]` or `Color`: Equivalent to calling `border.setColor(...)`. -- can take strings or a single widget as children. +- `` can take strings or a single widget as children. #### Canvas @@ -139,7 +139,7 @@ The canvas has no additional attributes. however, canvases take an atypical chil ``` -- can take multiple `canvasChild` calls as children. the second argument of canvasChild can be a string or a single widget. +- `` can take multiple `canvasChild` calls as children. the second argument of canvasChild can be a string or a single widget. ### LayoutBox @@ -159,7 +159,7 @@ The canvas has no additional attributes. however, canvases take an atypical chil - `minWidth` - `number`: Equivalent to calling `layoutBox.setMinimumWidth(...)`. - `width` - `number`: Equivalent to calling `layoutBox.setOverrideWidth(...)`. -- can take strings or a single widget as children. +- `` can take strings or a single widget as children. #### VerticalBox @@ -177,7 +177,7 @@ VerticalBox (as well as the HorizontalBox) can take a special function child, mu - `valign` - `VerticalAlignment`: Equivalent to calling `verticalBox.setVerticalAlignment(...)`. - `halign` - `HorizontalAlignment`: Equivalent to calling `verticalBox.setHorizontalAlignment(...)`. -- can take strings, any number of widgets, or the special {boxChild(1, <...>)} function. +- `` can take strings, any number of widgets, or the special {boxChild(1, <...>)} function. #### HorizontalBox @@ -192,7 +192,7 @@ VerticalBox (as well as the HorizontalBox) can take a special function child, mu - `valign` - `VerticalAlignment`: Equivalent to calling `verticalBox.setVerticalAlignment(...)`. - `halign` - `HorizontalAlignment`: Equivalent to calling `verticalBox.setHorizontalAlignment(...)`. -- , like , can take strings, any number of widgets, or the special {boxChild(1, <...>)} function. +- ``, like ``, can take strings, any number of widgets, or the special {boxChild(1, <...>)} function. #### ContentButton @@ -230,7 +230,7 @@ VerticalBox (as well as the HorizontalBox) can take a special function child, mu - `font` - `string`: Equivalent to setting the font using `setFont(...)`. - `fontPackage` - `string`: Equivalent to setting the font package using `setFont(...)` with a package specifier. -- obviously takes a string as a child +- `` obviously takes a string as a child #### Button @@ -259,7 +259,7 @@ VerticalBox (as well as the HorizontalBox) can take a special function child, mu - `font` - `string`: Equivalent to setting the font using `setFont(...)`. - `fontPackage` - `string`: Equivalent to setting the font package using `setFont(...)` with a package specifier. --