diff --git a/docs/art/mci.md b/docs/art/mci.md index 859f25bf..3fed8248 100644 --- a/docs/art/mci.md +++ b/docs/art/mci.md @@ -208,6 +208,8 @@ Additional text styles are available for numbers: #### Examples -Suppose a format object contains the following elements: `userName` and `affils`. We could create a `itemFormat` entry that builds a item to our specifications: `|04{userName!styleFirstLower} |08- |13{affils}`. This may produce a string such as "eVIL cURRENT - Razor 1911". +Suppose a format object contains the following elements: `userName` and `affils`. We could create a `itemFormat` entry that builds a item to our specifications: `|04{userName!styleFirstLower} |08- |13{affils}`. This may produce a string such as this: -Remember that a Python [string format mini language](https://docs.python.org/3/library/string.html#format-specification-mini-language) style syntax is available for widths, alignment, number prevision, etc. as well. A number can be made to be more human readable for example: `{byteSize:,}` may yield "1,123,456". \ No newline at end of file +![Example](../assets/images/text-format-example1.png "Text Format") + +:bulb: Remember that a Python [string format mini language](https://docs.python.org/3/library/string.html#format-specification-mini-language) style syntax is available for widths, alignment, number prevision, etc. as well. A number can be made to be more human readable for example: `{byteSize:,}` may yield "1,123,456". \ No newline at end of file diff --git a/docs/assets/images/text-format-example1.png b/docs/assets/images/text-format-example1.png new file mode 100644 index 00000000..387786f2 Binary files /dev/null and b/docs/assets/images/text-format-example1.png differ