This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| constant kMultiLineModeNone = 0 | |
| constant kMultiLineModeLiteral = 1 | |
| constant kMultiLineModeFolded = 2 | |
| command YAMLToArray pYaml | |
| local tInDocument = true | |
| local tPath | |
| local tArray | |
| local tPathLists | |
| local tReferences |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function htmlTextToMarkdown pText, pEscape | |
| put pEscape is not false into pEscape | |
| replace "<b>" with "<strong>" in pText | |
| replace "</b>" with "</strong>" in pText | |
| ## http://daringfireball.net/projects/markdown/syntax | |
| ## Doesn't support targets as far as I can tell | |
| _RemoveATagTarget pText |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| script "UTM To LatLong Library" | |
| /** | |
| Summary: Converts UTM coordindates to lat/long | |
| Parameters: | |
| pZoneNumber: A number between 1 and 60. | |
| pZoneLetter: A-Z, Zones A-M are soutern, N-Z are northern/ | |
| pEasting: Number | |
| pNorthing: Number |
OlderNewer