math-to-itex 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f05a939cba1dbfa2747fd5c6693f796eb17bec31
4
- data.tar.gz: 30d01cfd7e0f33cb1ac0923331b1b5ac44c8e645
3
+ metadata.gz: 3798f2a18ba6cc7bf8b193b536692991fa6c9083
4
+ data.tar.gz: 331b2da8e3eebf487aa8e824f6d60c990122aedc
5
5
  SHA512:
6
- metadata.gz: 6838353e1d7abd41c25a40177e3d13717ec55056cb67a648204f828fa3b52bf427134c60c44dd11a979ffa7f81fc2967dda7648ef965fe900bf726eb06786883
7
- data.tar.gz: 63dfc3d77457092d46078c8860dde0a2c6d1d367bfc592b685d6585cb2d92894a9608ef5855f6d647f5d410c9d0b8cbbaba2886a10f437aa17184ce7f2e002cf
6
+ metadata.gz: 83e5a19d8280ebfb4ec19b421925422ae3c457b79cfb6823cd1c913ff7954c3070b493adb0e6ebea0ffed4913406fa32bcc574c67cb338483bfe1cca12548f8d
7
+ data.tar.gz: d877e75e3d63f47b3c6a17fdc808185ea1caa32c5467d0bfe9ed6dfb384994be829230aabfe71d9eaf50aa34f4a20c48f72165063f4b70ecae0f3f3653a7462c
data/README.md CHANGED
@@ -57,7 +57,7 @@ Currently, the following formats are supported:
57
57
  | inline formulas | display formulas |
58
58
  | ------------- |-------------|
59
59
  | `$...$` | `$$...$$`
60
- | `(...)` | `[...]`
60
+ | `\(...\)` | `\[...\]`
61
61
  |   | `\begin{equation}...\end{equation}`
62
62
 
63
63
  ## More math stuff
@@ -25,6 +25,6 @@ module MathToItex
25
25
  # otherwise group 4 was start, match end equation
26
26
  \\end\{equation\}
27
27
  )))
28
- /x
28
+ /xm
29
29
  end
30
30
  end
@@ -1,3 +1,3 @@
1
1
  module MathToItex
2
- VERSION = "0.2.0"
2
+ VERSION = "0.3.0"
3
3
  end
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: math-to-itex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen Torikian
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-08 00:00:00.000000000 Z
11
+ date: 2014-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  description: Pass in a string and turn all math equations into itex equations. Or,
@@ -35,11 +35,11 @@ files:
35
35
  - LICENSE.txt
36
36
  - README.md
37
37
  - Rakefile
38
- - lib/math-to-itex.rb
38
+ - math-to-itex.gemspec
39
39
  - lib/math-to-itex/parser.rb
40
40
  - lib/math-to-itex/support_parens.rb
41
41
  - lib/math-to-itex/version.rb
42
- - math-to-itex.gemspec
42
+ - lib/math-to-itex.rb
43
43
  homepage: https://github.com/gjtorikian/math-to-itex
44
44
  licenses:
45
45
  - MIT
@@ -50,17 +50,17 @@ require_paths:
50
50
  - lib
51
51
  required_ruby_version: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - ">="
53
+ - - '>='
54
54
  - !ruby/object:Gem::Version
55
55
  version: '2.0'
56
56
  required_rubygems_version: !ruby/object:Gem::Requirement
57
57
  requirements:
58
- - - ">="
58
+ - - '>='
59
59
  - !ruby/object:Gem::Version
60
60
  version: '0'
61
61
  requirements: []
62
62
  rubyforge_project:
63
- rubygems_version: 2.2.2
63
+ rubygems_version: 2.0.3
64
64
  signing_key:
65
65
  specification_version: 4
66
66
  summary: Turn math syntaxes into itex equations.