summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/notebook/cells/output/html.vue
blob: ed4695a4eb8dc55ad2d71c2cf1282e41d22cbe99 (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
37
38
39
40
41
42
43
44
45
46
47
<script>
<<<<<<< HEAD
  import Prompt from '../prompt.vue';
=======
import sanitize from 'sanitize-html';
import Prompt from '../prompt.vue';
>>>>>>> Merge branch 'fl-ipythin-10-3' into 'security-10-3'

  export default {
    components: {
      prompt: Prompt,
    },
<<<<<<< HEAD
    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'],
        },
      });
    },
  },
};
>>>>>>> Merge branch 'fl-ipythin-10-3' into 'security-10-3'
</script>

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