Implement ruby controls!

This commit is contained in:
Eryn Wells 2023-05-08 20:12:11 -07:00
parent a5f5909bef
commit 174e5bc784
4 changed files with 58 additions and 1 deletions

View file

@ -8,6 +8,7 @@
</header>
{{ partial "table_of_contents.html" . }}
{{ partial "ruby_controls.html" . }}
{{- $hasContent := false -}}
{{ with .Content }}

View file

@ -0,0 +1,15 @@
{{ if .HasShortcode "ruby" -}}
<aside>
<fieldset id="ruby-controls">
<legend>Ruby</legend>
<input id="none" type="radio" name="ruby-controls" value="NONE" checked>
<label for="none">None</label>
<input id="both" type="radio" name="ruby-controls" value="BOTH" checked>
<label for="both">Both</label>
<input id="english-only" type="radio" name="ruby-controls" value="ENGLISH">
<label for="english-only">English</label>
<input id=hidden type=radio name=ruby-controls value=HIDDEN>
<label for=hidden>Hidden</label>
</fieldset>
</aside>
{{- end }}

View file

@ -1 +1 @@
<ruby {{ with .Get 1 }}lang="{{ . }}"{{ end }}>{{- .Inner }} <rp>(</rp><rt {{ with .Get 2 }}lang="{{ . }}"{{ end }}>{{- .Get 0 -}}</rt><rp>)</rp></ruby>{{- "" -}}
<ruby {{ with .Get 1 }}lang="{{ . }}"{{ end }}><span>{{- .Inner }}</span> <rp>(</rp><rt {{ with .Get 2 }}lang="{{ . }}"{{ end }}>{{- .Get 0 -}}</rt><rp>)</rp></ruby>{{- "" -}}