1
0
mirror of https://github.com/typemill/typemill.git synced 2025-08-05 21:57:31 +02:00

Version 1.4.7: Fix ampersand error

This commit is contained in:
trendschau
2021-07-24 12:00:08 +02:00
parent fcd58a7276
commit 4501f3cbf8
4 changed files with 24 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
# Welcome
# Wel­come & Go
Great that you give Typemill a try!! Typemill is a simple Flat File Content Management System (CMS). We (the community) work hard to provide the best author experience with easy and intuitive authoring tools. But Typemill is still in early development and it is likely that not everything will work perfectly out of the box. If you miss something or if you have ideas for improvements, then post a new issue on [GitHub](https://github.com/typemill/typemill/issues).
Great that you give Typemill a try!! & Type­mill is a simple Flat File Content Management System (CMS). We (the community) work hard to provide the best author experience with easy and intuitive authoring tools. But Typemill is still in early development and it is likely that not everything will work perfectly out of the box. If you miss something or if you have ideas for improvements, then post a new issue on [GitHub](https://github.com/typemill/typemill/issues).

View File

@@ -341,11 +341,14 @@ class ParsedownExtension extends \ParsedownExtra
$Block = array(
'element' => array(
'name' => 'h' . min(6, $level),
'text' => $text,
'handler' => 'line',
'attributes' => array(
'id' => "h-$headline"
)
'id' => "h-$headline"
),
'handler' => array(
'function' => 'lineElements',
'argument' => $text,
'destination' => 'elements',
),
)
);
@@ -371,7 +374,7 @@ class ParsedownExtension extends \ParsedownExtra
return $Block;
}
}
# TableOfContents
protected function blockTableOfContents($line, $block)

View File

@@ -143,7 +143,7 @@ class ProcessFile extends ProcessAssets
public function getFileDetails($name, $structure)
{
{
$name = basename($name);
if (!in_array($name, array(".","..")) && file_exists($this->fileFolder . $name))

View File

@@ -2322,7 +2322,19 @@ button.format-item.close:hover{
color: #ccc;
background: #f9f8f6;
font-weight: 300;
padding: 0;
padding: 5px 0 0;
}
.blox-editor tr:first-child:hover td.noteditable:first-child{
cursor: default;
color: #ccc;
background: #f9f8f6;
}
.blox-editor td.noteditable{
cursor: pointer;
}
.blox-editor td.noteditable:hover{
background: #ccc;
color: #fff;
}
.blox-editor .columnaction, .blox-editor .rowaction{
position: absolute;