Welcome to mirror list, hosted at ThFree Co, Russian Federation.

html.vue « output « cells « notebook « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 50aa38364c240507b8b4eb01087e7d9e9b308fcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<script>
import sanitize from 'sanitize-html';
import Prompt from '../prompt.vue';

export default {
  props: {
    rawCode: {
      type: String,
      required: true,
    },
  },
  components: {
    prompt: Prompt,
  },
  computed: {
    sanitizedOutput() {
      return sanitize(this.rawCode, {
        allowedTags: sanitize.defaults.allowedTags.concat([
          'img', 'svg',
        ]),
        allowedAttributes: {
          img: ['src'],
        },
      });
    },
  },

};
</script>

<template>
  <div class="output">
    <prompt />
    <div v-html="sanitizedOutput"></div>
  </div>
</template>