aboutsummaryrefslogtreecommitdiffstats
path: root/spring-front/src/components/Left.js
blob: 7abeed4ca333c2179650399880d10eaab80542e7 (plain) (blame)
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
import React from "react";
import hljs from "highlight.js/lib/core";
import markdown from "highlight.js/lib/languages/markdown";
import "highlight.js/styles/devibeans.css";
import "../index.css";

hljs.registerLanguage("markdown", markdown);

function update(text) {
  let result_element = document.querySelector("#highlight-content");
  result_element.innerText = text;
  return hljs.highlight(text, { language: "markdown" }).value;
}

function CreateTextArea() {
  return <textarea name="editor" className="editor" id="editor"></textarea>;
}

function CreatePreCode() {
  return (
    <pre id="highlight" aria-hidden="true">
      <code className="language-markdown" id="highlight-content"></code>
    </pre>
  );
}

export default function Left() {
  return (
    <div>
      <CreateTextArea />
      <CreatePreCode />
    </div>
  );
}