Skip to content

Commit 88a7671

Browse files
committed
Fix URL generation
1 parent c9dda5d commit 88a7671

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/_tools/remark/plugins/remark-stdlib-urls-www/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/_tools/remark/plugins/remark-stdlib-urls-www/lib/transformer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function factory( opts ) {
6767
debug( 'Found a package identifier.' );
6868

6969
debug( 'Current URL: %s', node.url );
70-
node.url = BASE_URL + '/docs/api/' + opts.version + node.identifier;
70+
node.url = BASE_URL+'docs/api/'+opts.version+'/'+node.identifier;
7171

7272
debug( 'Resolved URL: %s', node.url );
7373
}

0 commit comments

Comments
 (0)