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
verExamples:
- URLs must begin with For labelled URLs, the syntax is For unlabelled URLs, the syntax is 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:
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:
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.
[label](url). A single optional space may be included between the closing square bracket and the opening parenthesis, ie. [label] (url).
<url>. The URL shall be used as its own label.
-'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
File file("filepath")Returns true if filepath is installed, false otherwise.
File regex("regex")Returns true if a file matching regex is found, false otherwise.
Checksum checksum("filepath", checksum)Returns true if the calculated checksum of filepath matches checksum, false otherwise. If filepath does not exist, returns false.
- Version version("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.
+ Version version("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 Status active("filepath")Returns true if filepath is a .esp or .esm file that is both installed and active, false otherwise.