9Cells

인프런 강의

인프런 강의의 섹션, 유닛을 얻기위한 코드입니다. 강의 페이지에서 크롬 개발자 콘솔에 다음 코드를 복붙하고 엔터를 입력하면 됩니다.

const result = []
let index = 1
const sections = document.querySelectorAll('.cd-accordion__section-cover')
for (const section of sections) {
    const title = '### ' + section.querySelector('.cd-accordion__section-title').textContent
    result.push('')
    result.push(title)

    const units = section.querySelectorAll('.ac-accordion__unit-title')
    for (const unit of units) {
        const title = `##### ${index++}. ${unit.textContent}`
        result.push(title)
    }
}
console.log(result.join('\n'))