mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
placeholder commit
This commit is contained in:
parent
638bd9942e
commit
66109002ef
3 changed files with 12 additions and 4 deletions
|
@ -395,6 +395,7 @@ const makeContentCollector = function (
|
|||
const cls = dom.nodeAttr(node, 'class');
|
||||
|
||||
if (tname === 'img') {
|
||||
/*
|
||||
hooks.callAll('collectContentImage', {
|
||||
cc,
|
||||
state,
|
||||
|
@ -403,8 +404,11 @@ const makeContentCollector = function (
|
|||
cls,
|
||||
node,
|
||||
});
|
||||
// cc.doAttrib(state, 'image:foo.png');
|
||||
state.lineAttributes.img = 'foo.png';
|
||||
*/
|
||||
state.lineAttributes.img = node.src;
|
||||
// cc.doAttrib(state, 'img');
|
||||
// cc.startNewLine(state);
|
||||
|
||||
} else if (tname === 'br') {
|
||||
this.breakLine = true;
|
||||
const tvalue = dom.nodeAttr(node, 'value');
|
||||
|
@ -444,8 +448,8 @@ const makeContentCollector = function (
|
|||
// for now it shows how to fix the problem
|
||||
return;
|
||||
}
|
||||
|
||||
if (collectStyles) {
|
||||
if(tname === "img") debugger;
|
||||
hooks.callAll('collectContentPre', {
|
||||
cc,
|
||||
state,
|
||||
|
|
|
@ -82,6 +82,8 @@ domline.createDomLine = function (nonEmpty, doesWrap, optBrowser, optDocument) {
|
|||
let lineClass = 'ace-line';
|
||||
|
||||
result.appendSpan = function (txt, cls) {
|
||||
console.log("cls", cls);
|
||||
// console.log("domline", domline, "txt", txt, "cls", cls)
|
||||
let processedMarker = false;
|
||||
// Handle lineAttributeMarker, if present
|
||||
if (cls.indexOf(lineAttributeMarker) >= 0) {
|
||||
|
@ -97,6 +99,8 @@ domline.createDomLine = function (nonEmpty, doesWrap, optBrowser, optDocument) {
|
|||
processedMarker |= modifier.processedMarker;
|
||||
});
|
||||
|
||||
|
||||
|
||||
if (listType) {
|
||||
listType = listType[1];
|
||||
if (listType) {
|
||||
|
|
|
@ -73,7 +73,7 @@ linestylefilter.getLineStyleFilter = function (lineLength, aline, textAndClassFu
|
|||
function attribsToClasses(attribs) {
|
||||
let classes = '';
|
||||
let isLineAttribMarker = false;
|
||||
|
||||
top.console.log("attribs", attribs)
|
||||
// For each attribute number
|
||||
Changeset.eachAttribNumber(attribs, (n) => {
|
||||
// Give us this attributes key
|
||||
|
|
Loading…
Reference in a new issue