Skip to content

Commit

Permalink
Fix turnstile symbol and margin for ASCII
Browse files Browse the repository at this point in the history
  • Loading branch information
tirix committed Oct 29, 2023
1 parent 3980516 commit 682f526
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/statement.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<td class="col-step"></td>
<td class="col-hyp">{{#if @first}}{{#if @last}}Hypothesis{{else}}Hypotheses{{/if}}{{/if}}</td>
<td class="col-ref" ><a href="{{label}}" class="label">{{label}}</a></td>
<td class="col-expr">{{expr}}</td>
<td class="col-expr">{{expr}}</td>
</tr>
{{/each}}
<tr>
Expand Down Expand Up @@ -76,7 +76,7 @@
{{#each hyps }}<a class="step" href="#{{this}}">{{this}}</a>{{#if (not @last)}} {{/if}}{{/each}}
</td>
<td class="col-ref" ><a href="{{label}}" class="label">{{label}}</a></td>
<td class="col-expr"><a name="{{id}}"></a>{{expr}}</td>
<td class="col-expr"><a name="{{id}}"></a>{{expr}}</td>
</tr>
{{/each}}
</table>
Expand Down
2 changes: 1 addition & 1 deletion src/uni.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ impl UnicodeRenderer {
}

pub(crate) fn render_formula(&self, formula: &Formula) -> Result<String, String> {
let mut output: String = "".into();
let mut output: String = "".into();
// write!(output, "{} ", as_str(if use_provables
let typesetting = self.database.typesetting_result();
let nset = self.database.name_result();
Expand Down
1 change: 1 addition & 0 deletions static/metamath.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ a:hover {

pre {
font-family: Inconsolata, 'Courier New', Courier, monospace;
margin: 0;
}

qed {
Expand Down

0 comments on commit 682f526

Please sign in to comment.