1
2

More than 1 year has passed since last update.

GoogleColaboratoryはjavascript・htmlも使用できる

Last updated at Posted at 2023-08-04

結論

セルマジックを使うことでjavascript・htmlが使用できます

セルマジックとは

下記の記事が参考になります。

サンプルコード

javascript

.js
%%javascript
const div = document.createElement('div');
div.textContent ='Hello world!';
document.body.appendChild(div);

image.png


html

.html
%%html
<div>hello world</div>

image.png


実はmarkdown・latexも使用できるようです。

markdown

.md
%%markdown
# HelloWorld!
- hello
  - world
1. hello
1. world

|a|b|
|-|-|
|c|d|

image.png


latex

%%latex
A_1 = 1\\A_{i + 2} = A_{i + 1} + A_i

image.png

以上です。

参考

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2