5 lines
139 B
JavaScript
5 lines
139 B
JavaScript
"use strict";
|
|
|
|
exports.getChapterTitle = function (rawChapterDoc) {
|
|
return rawChapterDoc.querySelector("h1.entry-title").textContent;
|
|
};
|