diff --git a/website/docs/Build-Settings.md b/website/docs/Build-Settings.md index 8a5e0a96..a5c1532d 100644 --- a/website/docs/Build-Settings.md +++ b/website/docs/Build-Settings.md @@ -14,7 +14,7 @@ If you think something should be possible and you can't figure out how to do it, | Locate include files | [includedirs](includedirs.md) | | Set up precompiled headers | [pchheader](pchheader.md), [pchsource](pchsource.md) | | Link libraries, frameworks, or other projects | [links](links.md), [libdirs](libdirs.md) | -| Enable debugging information | symbols(symbols) | +| Enable debugging information | [symbols](symbols.md) | | Optimize for size or speed | [optimize](optimize.md) | | Add arbitrary build flags | [buildoptions](buildoptions.md), [linkoptions](linkoptions.md) | | Set the name or location of compiled targets | [targetname](targetname.md), [targetdir](targetdir.md) | diff --git a/website/docs/callingconvention.md b/website/docs/callingconvention.md index 57947aa4..5fd90537 100644 --- a/website/docs/callingconvention.md +++ b/website/docs/callingconvention.md @@ -8,12 +8,10 @@ callingconvention ("value") `value` is one of: -| | -|-------------| -| Cdecl | -| FastCall | -| StdCall | -| VectorCall | +* `Cdecl` +* `FastCall` +* `StdCall` +* `VectorCall` ### Applies To ### diff --git a/website/docs/exceptionhandling.md b/website/docs/exceptionhandling.md index abf41828..ecd77130 100644 --- a/website/docs/exceptionhandling.md +++ b/website/docs/exceptionhandling.md @@ -8,7 +8,7 @@ exceptionhandling ("value") `value` is one of: -| | | +| Value | Description | |---------|---------------------------------------------------| | Default | Use the toolset's default setting for exceptions. | | On | Turn on exceptions. | diff --git a/website/docs/inlining.md b/website/docs/inlining.md index 3a40b841..33dbecc6 100644 --- a/website/docs/inlining.md +++ b/website/docs/inlining.md @@ -8,7 +8,7 @@ inlining ("value") `value` is one of: -| | | +| Value | Description | |-----------|--------------------------------------------------------------------| | Default | Allow the compiler to use its default inlining behavior. | | Disabled | Turn off inlining entirely. | diff --git a/website/docs/newaction.md b/website/docs/newaction.md index b9235c79..12754841 100644 --- a/website/docs/newaction.md +++ b/website/docs/newaction.md @@ -8,7 +8,7 @@ newaction { description } `description` is a table describing the new action. It may contain the following fields: -| | | +| Field | Description | |-------------|------------------------------------------------------------------------------------| | trigger | What the user would type on the command line to select the action, e.g. "vs2013". | | shortname | A short summary for the help text, e.g. "Visual Studio 2013". | diff --git a/website/docs/newoption.md b/website/docs/newoption.md index 4e458eb5..26ebc689 100644 --- a/website/docs/newoption.md +++ b/website/docs/newoption.md @@ -8,7 +8,7 @@ newoption { description } `description` is a table describing the new option. It may contain the following fields: -| | | +| Field | Description | |-------------|------------------------------------------------------------------------------------| | trigger | What the user would type on the command line to select the option, e.g. "--name". | | description | A short description of the option, to be displayed in the help text. | diff --git a/website/docs/os.findlib.md b/website/docs/os.findlib.md index a50c9db5..9208725a 100644 --- a/website/docs/os.findlib.md +++ b/website/docs/os.findlib.md @@ -6,7 +6,7 @@ p = os.findlib("libname" [, additionalpaths]) ### Parameters ### -`libname` is name of the library to locate. It may be specified with (libX11.so.md) or without (X11) system-specific decorations. +`libname` is name of the library to locate. It may be specified with (libX11.so) or without (X11) system-specific decorations. `additionalpaths` is a string or a table of one or more additional search path ### Return Value ### diff --git a/website/docs/os.getversion.md b/website/docs/os.getversion.md index a78927dd..7b591941 100644 --- a/website/docs/os.getversion.md +++ b/website/docs/os.getversion.md @@ -12,7 +12,7 @@ None. A table, containing the following key-value pairs: -| | | +| Field | Description | |---------------|---------------------------------------------------| | majorversion | The major version number | | minorversion | The minor version number | diff --git a/website/docs/os.stat.md b/website/docs/os.stat.md index dc3982bd..844afc05 100644 --- a/website/docs/os.stat.md +++ b/website/docs/os.stat.md @@ -13,7 +13,7 @@ info = os.stat("path") If successful, a table of values: -| | | +| Field | Description | |-------|-----------------------------| | mtime | Last modified timestamp | | size | The file size in bytes | diff --git a/website/docs/propertydefinition.md b/website/docs/propertydefinition.md index f36079a8..2907529f 100644 --- a/website/docs/propertydefinition.md +++ b/website/docs/propertydefinition.md @@ -22,14 +22,12 @@ Required; a name for the rule that will be unique in the projects where it is us #### kind #### The expected data type of the values assigned to this property. Allowed values are: -| | | -|---------|-----------------------------------| -| boolean | A yes or no value. | -| integer | An integer number. | -| list | A list of string values. | -| number | A floating point number. | -| path | A single file system path value. | -| string | A single string value. | +* `boolean` - a yes or no value. +* `integer` - an integer number. +* `list` - a list of string values. +* `number` - a floating point number. +* `path` - a single file system path value. +* `string` - a single string value. For enum properties, this field is ignored and can be omitted. Otherwise it is required. diff --git a/website/docs/rtti.md b/website/docs/rtti.md index 59a2dbd9..d91b4ae6 100644 --- a/website/docs/rtti.md +++ b/website/docs/rtti.md @@ -8,7 +8,7 @@ rtti ("value") `value` is one of: -| | | +| Value | Description | |---------|---------------------------------------------------| | Default | Use the toolset's default setting for run-time type information. | | On | Turn on RTTI. |