morhetz / gruvbox-contrib

Ports of the gruvbox colorscheme
1.65k stars 362 forks source link

add pandoc theme #133

Open Moelf opened 2 years ago

Moelf commented 2 years ago
`````md # some title :::::::::::::: {.columns} ::: {.column width="49%"} ## Julia ```julia function go_faster(a) trace = 0.0 for i in axes(a, 1) trace += tanh(a[i, i]) end return a .+ trace end ``` ::: ::: {.column width="49%"} ## Python (Numba) ```python @jit(nopython=True) def go_fast(a): trace = 0.0 for i in range(a.shape[0]): trace += np.tanh(a[i, i]) return a + trace ``` ::: :::::::::::::: `````

image