diff --git a/docs/BOSS Metadata Syntax.html b/docs/BOSS Metadata Syntax.html index dce0c477..522bdef2 100644 --- a/docs/BOSS Metadata Syntax.html +++ b/docs/BOSS Metadata Syntax.html @@ -263,9 +263,9 @@ would be displayed as verstring list✓A list of versions that can be found at the URL.

Examples: -http://skyrim.nexusmods.com/mods/19/ +'http://skyrim.nexusmods.com/mods/19/' or -link: http://steamcommunity.com/sharedfiles/filedetails/?id=87144366 +link: 'http://steamcommunity.com/sharedfiles/filedetails/?id=87144366' ver: - '1.3.2c' @@ -333,7 +333,7 @@ msg:

URLs must begin with file:, http: or https:, and be written according to the following subset of Markdown syntax. Note that BOSS does not recognise additional Markdown syntaxes to those given below.

For labelled URLs, the syntax is [label](url). A single optional space may be included between the closing square bracket and the opening parenthesis, ie. [label] (url).

For unlabelled URLs, the syntax is <url>. The URL shall be used as its own label. -

Note that the URLs given as part of a location data structure should not be labelled or enclosed in less-than or greater-than signs, as they consist of raw URL data, rather than URLs within arbitrary strings. +

Note that the URLs given as part of a location data structure should not be labelled or enclosed in less-than or greater-than signs, as they consist of raw URL data, rather than text to be displayed in a message.

Examples: 'This [string](https://en.wikipedia.org/wiki/String_(computer_science)) contains a labelled hyperlink.' would be displayed as @@ -357,7 +357,7 @@ both get displayed as Filefile("filepath")Returns true if filepath is installed, false otherwise. Fileregex("regex")Returns true if a file matching regex is found, false otherwise. Checksumchecksum("filepath", checksum)Returns true if the calculated checksum of filepath matches checksum, false otherwise. If filepath does not exist, returns false. - Versionversion("filepath", "version", comparator)Returns true if the boolean expression (actual version of filepath) comparator version holds true, false otherwise. If filepath does not exist and comparator is ==, > or >=, returns false. If filepath does not exist and comparator is !=, < or <=, returns true. + Versionversion("filepath", "version", comparator)Returns true if the boolean expression (actual version of filepath) comparator version holds true, false otherwise. If filepath does not exist and comparator is ==, > or >=, returns false. If filepath does not exist and comparator is !=, < or <=, returns true. The comparison is not a straightforward per-character comparison, but instead uses the Alphanum algorithm. Plugin Active Statusactive("filepath")Returns true if filepath is a .esp or .esm file that is both installed and active, false otherwise.