I am trying out the printing of a page using printable.module. However the text
li {
display: inline;
margin-right: 5px;
}
is printed above the widget and "Print". This text - obviously css - isn't enclosed in any
markup. Thus it simply gets printed as is...
Looking into the matter, I find that (in MY case) this is an issue within printable.module. In function pintable_entity_view(...) lines 223 ff. look like this:
$build['printable_navigation'] = [
'#markup' => '
',
'#attached' => [
'library' => ['printable/entity-links'],
],
'#weight' => 100,
'#cache' => [
'tags' => $entity->getEntityType()->getListCacheTags(),
],
];
It seems to me that maybe the variable $printable_navigation doesn't contain the right markup.
Install and activate the printable module and select some node type
enclose the "li {...} specification within
Closed: cannot reproduce
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.