Skip to content

Commit

Permalink
Merge 4a616f6 into 7b44e69
Browse files Browse the repository at this point in the history
  • Loading branch information
anandijain committed Mar 26, 2021
2 parents 7b44e69 + 4a616f6 commit f4832e3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
- pull_request
- push
jobs:
test:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MathML"
uuid = "abcecc63-2b08-419c-80c4-c63dca6fa478"
authors = ["anand <anandj@uchicago.edu> and contributors"]
version = "0.1.3"
version = "0.1.4"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand Down
3 changes: 2 additions & 1 deletion src/parse.jl
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ end
parse a <ci> node
"""
function parse_ci(node)
c = Meta.parse(strip(node.content))
# c = Symbol(Meta.parse(strip(node.content)))
c = Symbol(string(strip(node.content)))
Num(Variable(c))
end

Expand Down

0 comments on commit f4832e3

Please sign in to comment.