1
0
mirror of https://github.com/typemill/typemill.git synced 2025-08-01 11:50:28 +02:00

Fixed & in raw mode

This commit is contained in:
trendschau
2022-05-24 21:55:52 +02:00
parent 76394bd3f3
commit 9f64b75d78
2 changed files with 18 additions and 18 deletions

34
composer.lock generated
View File

@@ -839,16 +839,16 @@
},
{
"name": "symfony/deprecation-contracts",
"version": "v2.5.0",
"version": "v2.5.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/deprecation-contracts.git",
"reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
"reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
"reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
"reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
"shasum": ""
},
"require": {
@@ -886,7 +886,7 @@
"description": "A generic function and convention to trigger deprecation notices",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
"source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.1"
},
"funding": [
{
@@ -902,7 +902,7 @@
"type": "tidelift"
}
],
"time": "2021-07-12T14:48:14+00:00"
"time": "2022-01-02T09:53:40+00:00"
},
{
"name": "symfony/event-dispatcher",
@@ -982,16 +982,16 @@
},
{
"name": "symfony/finder",
"version": "v5.4.3",
"version": "v5.4.8",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
"reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d"
"reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/finder/zipball/231313534dded84c7ecaa79d14bc5da4ccb69b7d",
"reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d",
"url": "https://api.github.com/repos/symfony/finder/zipball/9b630f3427f3ebe7cd346c277a1408b00249dad9",
"reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9",
"shasum": ""
},
"require": {
@@ -1025,7 +1025,7 @@
"description": "Finds files and directories via an intuitive fluent interface",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/finder/tree/v5.4.3"
"source": "https://github.com/symfony/finder/tree/v5.4.8"
},
"funding": [
{
@@ -1041,7 +1041,7 @@
"type": "tidelift"
}
],
"time": "2022-01-26T16:34:36+00:00"
"time": "2022-04-15T08:07:45+00:00"
},
{
"name": "symfony/polyfill-ctype",
@@ -1345,12 +1345,12 @@
"source": {
"type": "git",
"url": "https://github.com/vlucas/valitron.git",
"reference": "9bf11f4374f722b78f69b1d36f5fd9154bb6bffa"
"reference": "d0fb8ee84c96f68dcd06983475838780aed5c6c7"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/vlucas/valitron/zipball/9bf11f4374f722b78f69b1d36f5fd9154bb6bffa",
"reference": "9bf11f4374f722b78f69b1d36f5fd9154bb6bffa",
"url": "https://api.github.com/repos/vlucas/valitron/zipball/d0fb8ee84c96f68dcd06983475838780aed5c6c7",
"reference": "d0fb8ee84c96f68dcd06983475838780aed5c6c7",
"shasum": ""
},
"require": {
@@ -1397,7 +1397,7 @@
"type": "tidelift"
}
],
"time": "2021-12-07T08:05:12+00:00"
"time": "2022-03-16T09:16:07+00:00"
}
],
"packages-dev": [],
@@ -1411,5 +1411,5 @@
"prefer-lowest": false,
"platform": [],
"platform-dev": [],
"plugin-api-version": "2.2.0"
"plugin-api-version": "2.0.0"
}

View File

@@ -8,7 +8,7 @@ let editor = new Vue({
},
form: {
title: document.getElementById("title").value,
content: document.getElementById("content").innerHTML,
content: document.getElementById("content").textContent,
},
showEditor: 'show',
},