(view)
| 1091 | } |
| 1092 | |
| 1093 | export function autoLinkify (view) { |
| 1094 | const contentBlock = view[0] |
| 1095 | if (!contentBlock) { |
| 1096 | return |
| 1097 | } |
| 1098 | for (let level = 1; level <= 6; level++) { |
| 1099 | linkifyAnchors(level, contentBlock) |
| 1100 | } |
| 1101 | } |
| 1102 | |
| 1103 | function getHeaderContent (header) { |
| 1104 | const headerHTML = $(header).clone() |
no test coverage detected