Skip to content

Commit cdf09b6

Browse files
committed
Fix <br/>
1 parent 767faec commit cdf09b6

File tree

11 files changed

+100
-94
lines changed

11 files changed

+100
-94
lines changed

docs/extendscript-toolkit/debugging-in-the-toolkit.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,12 @@ When execution reaches this breakpoint after the specified number of hits, the d
132132

133133
Each breakpoint is indicated by an icon to the left of the line number in the document window, and an icon and line number in the Breakpoints panel. Different icons are used in the document window and in the Breakpoints panel.
134134

135-
| Document window | Breakpoints panel | Description |
136-
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ |
137-
| ![unconditional-document](./_static/02_the-extendscript-toolkit_debugging-in-the-toolkit_setting-breakpoints_breakpoint-icons_unconditional-document.jpg) | ![unconditional-bppanel](./_static/02_the-extendscript-toolkit_debugging-in-the-toolkit_setting-breakpoints_breakpoint-icons_unconditional-bppanel.jpg) | Unconditional breakpoint. Execution stops here. |
138-
| ![unconditional-disabled-document](./_static/02_the-extendscript-toolkit_debugging-in-the-toolkit_setting-breakpoints_breakpoint-icons_unconditional-disabled-document.jpg) | ![unconditional-disabled-bppanel](./_static/02_the-extendscript-toolkit_debugging-in-the-toolkit_setting-breakpoints_breakpoint-icons_unconditional-disabled-bppanel.jpg) | Unconditional breakpoint, disabled. Execution does not stop. |
139-
| ![conditional-document](./_static/02_the-extendscript-toolkit_debugging-in-the-toolkit_setting-breakpoints_breakpoint-icons_conditional-document.jpg) | ![conditional-bppanel](./_static/02_the-extendscript-toolkit_debugging-in-the-toolkit_setting-breakpoints_breakpoint-icons_conditional-bppanel.jpg) | Conditional breakpoint. Execution stops if the attached JavaScript<br/>expression evaluates to `true`. |
140-
| ![conditional-disabled-document](./_static/02_the-extendscript-toolkit_debugging-in-the-toolkit_setting-breakpoints_breakpoint-icons_conditional-disabled-document.jpg) | ![conditional-disabled-bppanel](./_static/02_the-extendscript-toolkit_debugging-in-the-toolkit_setting-breakpoints_breakpoint-icons_conditional-disabled-bppanel.jpg) | Conditional breakpoint, disabled. Execution does not stop. |
135+
| Document window | Breakpoints panel | Description |
136+
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- |
137+
| ![unconditional-document](./_static/02_the-extendscript-toolkit_debugging-in-the-toolkit_setting-breakpoints_breakpoint-icons_unconditional-document.jpg) | ![unconditional-bppanel](./_static/02_the-extendscript-toolkit_debugging-in-the-toolkit_setting-breakpoints_breakpoint-icons_unconditional-bppanel.jpg) | Unconditional breakpoint. Execution stops here. |
138+
| ![unconditional-disabled-document](./_static/02_the-extendscript-toolkit_debugging-in-the-toolkit_setting-breakpoints_breakpoint-icons_unconditional-disabled-document.jpg) | ![unconditional-disabled-bppanel](./_static/02_the-extendscript-toolkit_debugging-in-the-toolkit_setting-breakpoints_breakpoint-icons_unconditional-disabled-bppanel.jpg) | Unconditional breakpoint, disabled. Execution does not stop. |
139+
| ![conditional-document](./_static/02_the-extendscript-toolkit_debugging-in-the-toolkit_setting-breakpoints_breakpoint-icons_conditional-document.jpg) | ![conditional-bppanel](./_static/02_the-extendscript-toolkit_debugging-in-the-toolkit_setting-breakpoints_breakpoint-icons_conditional-bppanel.jpg) | Conditional breakpoint. Execution stops if the attached JavaScript expression evaluates to `true`. |
140+
| ![conditional-disabled-document](./_static/02_the-extendscript-toolkit_debugging-in-the-toolkit_setting-breakpoints_breakpoint-icons_conditional-disabled-document.jpg) | ![conditional-disabled-bppanel](./_static/02_the-extendscript-toolkit_debugging-in-the-toolkit_setting-breakpoints_breakpoint-icons_conditional-disabled-bppanel.jpg) | Conditional breakpoint, disabled. Execution does not stop. |
141141

142142
---
143143

docs/extendscript-toolkit/the-script-editor.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -190,19 +190,19 @@ Double-click a result line in the Find Results panel to jump directly to the doc
190190

191191
The Toolkit supports a limited set of Regular Expression syntax for the Find and Replace dialog:
192192

193-
| RegEx Token | Behaviour |
194-
| ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
195-
| `.` | Matches any character |
196-
| `(` | Marks the start of a region for capturing a match. |
197-
| `)` | Marks the end of a capturing region. |
198-
| `\<` | Matches the start of a word using the editor's current definition of words. |
199-
| `\>` | Matches the end of a word using the editor's current definition of words. |
200-
| `\x` | Escapes a character x that would otherwise have a special meaning. For example, [ is<br/>interpreted as a left bracket, rather than the start of a character set. |
201-
| `[...]` | A set of characters; for example, [abc] means any of the characters a, b or c.<br/>You can also use ranges, for example [a-z] for any lower case character. |
202-
| `[^...]` | The complement of the characters in a set. For example, [^A-Za-z] means any character<br/>except an alphabetic character. |
203-
| `^` | Matches the start of a line (unless used inside a set). |
204-
| `$` | Matches the end of a line. |
205-
| `*` | Matches 0 or more times. For example, Sa\*m matches Sm, Sam, Saam, Saaam etc. |
193+
| RegEx Token | Behaviour |
194+
| ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
195+
| `.` | Matches any character |
196+
| `(` | Marks the start of a region for capturing a match. |
197+
| `)` | Marks the end of a capturing region. |
198+
| `\<` | Matches the start of a word using the editor's current definition of words. |
199+
| `\>` | Matches the end of a word using the editor's current definition of words. |
200+
| `\x` | Escapes a character x that would otherwise have a special meaning. For example, `[` is interpreted as a left bracket, rather than the start of a character set. |
201+
| `[...]` | A set of characters; for example, [abc] means any of the characters a, b or c. You can also use ranges, for example [a-z] for any lower case character. |
202+
| `[^...]` | The complement of the characters in a set. For example, [^A-Za-z] means any character except an alphabetic character. |
203+
| `^` | Matches the start of a line (unless used inside a set). |
204+
| `$` | Matches the end of a line. |
205+
| `*` | Matches 0 or more times. For example, Sa\*m matches Sm, Sam, Saam, Saaam etc. |
206206

207207
In a replace operation, you can use the captured regions of a match in the replacement expression by using the placeholders `\1` through `\9`, where `\1` refers to the first captured region, `\2` to the second, and so on.
208208

docs/file-system-access/folder-object.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -627,9 +627,9 @@ Retrieves the path for this folder relative to the specified base path or the cu
627627

628628
#### Parameters
629629

630-
| Parameter | Type | Description |
631-
| ---------- | ------ | -------------------------------------------------------------------------------- |
632-
| `basePath` | String | Optional. The base path for the relative URI.<br/>Default is the current folder. |
630+
| Parameter | Type | Description |
631+
| ---------- | ------ | ---------------------------------------------------------------------------- |
632+
| `basePath` | String | Optional. The base path for the relative URI. Default is the current folder. |
633633

634634
#### Returns
635635

docs/integrating-external-libraries/defining-entry-points-for-direct-access.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -126,14 +126,14 @@ For each function, the string begins with the function name, followed by an unde
126126

127127
The characters that indicate data types are:
128128

129-
| Characeter | Description |
130-
| ---------- | --------------------------------------------------------------------------------------------------------------------------- |
131-
| `a` | Any type. The argument is not converted. This is the default, if no type is supplied or if a type<br/>code is unrecognized. |
132-
| `b` | Boolean |
133-
| `d` | signed 32 bit integer |
134-
| `u` | unsigned 32 bit integer |
135-
| `f` | 64 bit floating point |
136-
| `s` | String |
129+
| Characeter | Description |
130+
| ---------- | ----------------------------------------------------------------------------------------------------------------------- |
131+
| `a` | Any type. The argument is not converted. This is the default, if no type is supplied or if a type code is unrecognized. |
132+
| `b` | Boolean |
133+
| `d` | signed 32 bit integer |
134+
| `u` | unsigned 32 bit integer |
135+
| `f` | 64 bit floating point |
136+
| `s` | String |
137137

138138
For example, suppose your library defines these two entry points:
139139

docs/integrating-xml/xml-object-reference.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -732,10 +732,16 @@ If the XPath expression does not evaluate to a node list, throws a JavaScript ex
732732

733733
#### Parameters
734734

735-
| Parameter | Type | Description |
736-
| ------------ | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
737-
| `expression` | String | A String containing an XPath expression.<br/><br/>#### NOTE<br/>In this context, include the actual top level element. For example, an<br/>expression for the example XML must start with "/bookstore". This is unlike<br/>JavaScript property access, where the top level element is implied. |
738-
| `variables` | Object | Optional. A JavaScript object containing variable definitions. The properties are used to look up XPath variables contained in the expression. For example, if the expression contains the variable `$abc`, the value is in the object's `abc` property. |
735+
+--------------+--------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
736+
| Parameter | Type | Description |
737+
+==============+========+==========================================================================================================================================================================================================================================================+
738+
| `expression` | String | A String containing an XPath expression. |
739+
| | | |
740+
| | | !!! note |
741+
| | | In this context, include the actual top level element. For example, an expression for the example XML must start with "/bookstore". This is unlike JavaScript property access, where the top level element is implied. |
742+
+--------------+--------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
743+
| `variables` | Object | Optional. A JavaScript object containing variable definitions. The properties are used to look up XPath variables contained in the expression. For example, if the expression contains the variable `$abc`, the value is in the object's `abc` property. |
744+
+--------------+--------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
739745

740746
#### Returns
741747

docs/interapplication-communication/bridgetalk-message-object.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -261,9 +261,9 @@ This allows you to send multiple responses to messages.
261261

262262
#### Parameters
263263

264-
| Parameter | Type | Description |
265-
| --------- | ---- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
266-
| `result` | Any | You can send data of any type as the result value. The messaging framework creates a BridgeTalk message object, and flattens this value into a string<br/>which it stores in the body of that message. See [Passing values between applications](communicating-through-messages.md#passing-values-between-applications). |
264+
| Parameter | Type | Description |
265+
| --------- | ---- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
266+
| `result` | Any | You can send data of any type as the result value. The messaging framework creates a BridgeTalk message object, and flattens this value into a string which it stores in the body of that message. See [Passing values between applications](communicating-through-messages.md#passing-values-between-applications). |
267267

268268
#### Returns
269269

0 commit comments

Comments
 (0)