Rename “_” id references to “lodash”.

This commit is contained in:
John-David Dalton
2016-08-30 22:32:32 -07:00
parent 0d757fdc40
commit 02be5b808e

View File

@@ -37,6 +37,10 @@ function build(type) {
const $header = $('h1').first().remove();
const version = _.trim($header.find('span').first().text()).slice(1);
// Rename "_" id references to "lodash".
$('#_').attr('id', 'lodash');
$('[href="#_"]').attr('href', '#lodash');
// Remove docdown horizontal rules.
$('hr').remove();