michalbe / wiki-infobox

Simple Wikipedia infobox scraper
https://github.com/michalbe/wiki-infobox
MIT License
17 stars 8 forks source link

Parse math expressions #46

Open michalbe opened 9 years ago

michalbe commented 9 years ago

Expressions like |expr_e={{ 3434 + 19817934 + 213123 }}| are threated as simple text now. We should parse them and return object like:

expr_e: {
  type: 'expression',
  value: '3434 + 19817934 + 213123',
  result: '20034491',
}