Skip to content

Commit

Permalink
updated function docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zanerock committed Aug 11, 2024
1 parent e43192e commit a069fa5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion helpers/ddata.js
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,8 @@ function methodSig () {
/**
* extracts url and caption data from @link tags
* @param {string} - a string containing one or more {@link} tags
* @returns {Array.<{original: string, caption: string, url: string}>}
* @param {object} - `dmdOptions`; link formatting is influenced by the `clever-links` and `monospace-links` values
* @returns {Array.<{original: string, caption: string, url: string, format: 'code'|'plain'}>}
* @static
*/
function parseLink (text, dmdOptions) {
Expand Down
2 changes: 1 addition & 1 deletion helpers/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function escape (input) {
}

/**
replaces {@link} tags with markdown links in the suppied input text
replaces {@link}, {@linkplain}, and {@linkcode} tags with markdown links in the supplied input text
*/
function inlineLinks (text, options) {
if (text) {
Expand Down

0 comments on commit a069fa5

Please sign in to comment.