Skip to content

Commit

Permalink
Remove linkify
Browse files Browse the repository at this point in the history
And figure out later how to restore it, if we still want it
  • Loading branch information
RoelN committed Oct 8, 2024
1 parent af2821b commit b126365
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 187 deletions.
188 changes: 9 additions & 179 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"core-js": "^3.25.2",
"prismjs": "^1.29.0",
"vue": "^3.2.39",
"vue-linkify": "^1.0.1",
"vue-prism-component": "^2.0.0"
},
"devDependencies": {
Expand Down
5 changes: 1 addition & 4 deletions src/components/report/FontSummary.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,7 @@
<tbody>
<tr v-for="(value, key) in summary" :key="key">
<th scope="row">{{ key }}</th>
<td
v-html="value"
v-linkified:options="{ className: '' }"
/>
<td v-html="value" />
</tr>
</tbody>
</table>
Expand Down
3 changes: 0 additions & 3 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,9 @@

import Vue from "vue";
import App from "./App.vue";
import linkify from "vue-linkify";
import "prismjs";
import "prismjs/themes/prism-tomorrow.css";

Vue.directive("linkified", linkify);

Vue.config.productionTip = false;
Vue.config.globalProperties.$filters = {
listify(array, emptyWord) {
Expand Down

0 comments on commit b126365

Please sign in to comment.