diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-11-28 12:36:31 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-11-28 12:36:31 +0100 |
commit | e1dd9adf16592e1a66c5d1e255b1085ab944ec58 (patch) | |
tree | 87274441e6260e49cab7acf5ec0b1dce7c2a9ee2 | |
parent | 836922c666d6f2882e1ba856c3734159eee71bf3 (diff) | |
download | puszcza-e1dd9adf16592e1a66c5d1e255b1085ab944ec58.tar.gz puszcza-e1dd9adf16592e1a66c5d1e255b1085ab944ec58.zip |
Fix markdown parsing
-rw-r--r-- | components/Ranking/RankingFirstEntry.vue | 1 | ||||
-rw-r--r-- | components/Ranking/RankingRules.vue | 5 | ||||
-rw-r--r-- | nuxt.config.js | 8 |
3 files changed, 6 insertions, 8 deletions
diff --git a/components/Ranking/RankingFirstEntry.vue b/components/Ranking/RankingFirstEntry.vue index edb137d..d9f290b 100644 --- a/components/Ranking/RankingFirstEntry.vue +++ b/components/Ranking/RankingFirstEntry.vue @@ -33,6 +33,7 @@ export default { grid-template-columns: 15% 60% 25%; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25); + line-height: 50px; font-size: 26px; font-weight: 600; } diff --git a/components/Ranking/RankingRules.vue b/components/Ranking/RankingRules.vue index b6c57ef..5ae3c74 100644 --- a/components/Ranking/RankingRules.vue +++ b/components/Ranking/RankingRules.vue @@ -8,11 +8,13 @@ <script> import rules from '~/assets/zasady-punktacji.md' +const md = require('markdown-it')() + export default { name: 'RankingRules', data() { return { - rules + rules: md.render(rules) } } } @@ -26,6 +28,7 @@ export default { .rules th, .rules td { + padding: 5px 15px; border: 1px solid #000; } </style> diff --git a/nuxt.config.js b/nuxt.config.js index 4c07f72..104781c 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -69,8 +69,7 @@ export default { modules: [ // Doc: https://axios.nuxtjs.org/usage '@nuxtjs/axios', - '@nuxtjs/pwa', - '@nuxtjs/markdownit' + '@nuxtjs/pwa' ], /* ** Axios module configuration @@ -80,11 +79,6 @@ export default { /* ** Build configuration */ - markdownit: { - preset: 'default', - linkify: true, - breaks: true - }, build: { /* ** You can extend webpack config here |