Rich content demo: charts, diagrams & notebooks
This post is a scratchpad that exercises each rich-content renderer. It’s safe to delete once you’ve QA’d the features.
Chart.js
Plotly
Mermaid
graph LR
A[Raw sources] --> B[Databricks bronze]
B --> C[Silver]
C --> D[Gold tables]
D --> E[Dashboards]
Pseudocode
\begin{algorithm}
\caption{Gradient Descent}
\begin{algorithmic}
\PROCEDURE{GradientDescent}{$f, \theta_0, \eta$}
\STATE $\theta \gets \theta_0$
\WHILE{not converged}
\STATE $\theta \gets \theta - \eta \nabla f(\theta)$
\ENDWHILE
\RETURN $\theta$
\ENDPROCEDURE
\end{algorithmic}
\end{algorithm}
TikZ (TikZJax)
Math (MathJax)
Attribution via the integrated gradient: $\phi_i(x) = (x_i - x_i’) \int_0^1 \frac{\partial f(x’ + \alpha(x-x’))}{\partial x_i}\, d\alpha$.