From be0a13723c9c4683ed869d6aa84f2f14adeca73c Mon Sep 17 00:00:00 2001 From: cjsha Date: Fri, 21 Feb 2025 16:09:39 -0500 Subject: [PATCH] Change syntax highlighting - Specifically, remove highlighting for the purpose of code blocks with equations for converting raw ADC values to voltage --- template/public/main.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/template/public/main.css b/template/public/main.css index cfe41e88..02c5f26b 100644 --- a/template/public/main.css +++ b/template/public/main.css @@ -106,4 +106,11 @@ ol li div { [data-bs-theme=light] #logo { content:url("../logo-light-mode.svg"); +} + +/* Avoid syntax highlighting in code blocks that have an equation to convert ADC values to +voltage. For example, navigate to the api/OpenEphys.Onix1.NeuropixelsV1DataFrame.html page to find +the following equation: `Electrode Voltage (µV) = 1,171.875 / LFPGain × (ADCSample – 512)` */ +.hljs-title { + color:black } \ No newline at end of file