ulmul 0.6.0 → 0.7.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 +4 -4
- data/README-en +2 -5
- data/README-ja +2 -5
- data/Rakefile +1 -1
- data/index.en.html +14 -19
- data/index.ja.html +12 -17
- data/lib/ulmul.rb +20 -10
- data/ulmul.gemspec +4 -7
- metadata +19 -15
- data/bin/ulmul2xhtml +0 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9469aef4ee259ab561a295f22afb77330c35b3ef04039e02b7fd1358173c624a
|
4
|
+
data.tar.gz: 5482744fa00f4c6dce080ef33e16cd3694249862d7f03d69d380c0ce8054f784
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d34b32788ab26251dfa22778fc661d8958c47bd7de43dc9761ae34324e39cbffb822d000b25273438aa68f339d7291bf57abcc393df188bbdb1e570e5f222ef
|
7
|
+
data.tar.gz: 7af15b88c56bfe38b1ac6d6ed413569698cea5223521591be6e4e3cbb82901649ca01ba9ecf528b9d995e6d92170a3aa9f8254a37492a9dfa2b222f12caf139e
|
data/README-en
CHANGED
@@ -182,9 +182,6 @@ If you do not need the Table of Contents, specify 1.
|
|
182
182
|
* http://t-nissie.users.sourceforge.net/ULMUL/index.en.html
|
183
183
|
* Its source is http://t-nissie.users.sourceforge.net/ULMUL/README-en (this document)
|
184
184
|
|
185
|
-
=== ulmul2xhtml is obsolete
|
186
|
-
ulmul2xhtml will be removed from next version 0.6.x.
|
187
|
-
|
188
185
|
== Usage of ulmul2mathjax
|
189
186
|
It uses MathJax http://www.mathjax.org/ to show equations.
|
190
187
|
$ ulmul2mathjax --help
|
@@ -208,10 +205,10 @@ For more, see TODO file.
|
|
208
205
|
|
209
206
|
== Repository in GitHub
|
210
207
|
You can clone the source tree of ULMUL from GitHub with git(1) command:
|
211
|
-
$ git clone
|
208
|
+
$ git clone https://github.com/t-nissie/ULMUL.git ulmul
|
212
209
|
|
213
210
|
== Copying
|
214
|
-
Copyright © 2008,2009,2010,2011,2012,2013,2014,2015,2017,2022 by Takeshi Nishimatsu
|
211
|
+
Copyright © 2008,2009,2010,2011,2012,2013,2014,2015,2017,2022,2024 by Takeshi Nishimatsu
|
215
212
|
|
216
213
|
ulmul.rb is distributed in the hope that
|
217
214
|
it will be useful, but WITHOUT ANY WARRANTY.
|
data/README-ja
CHANGED
@@ -173,9 +173,6 @@ JavaScriptのファイル名を指定します。
|
|
173
173
|
* http://t-nissie.users.sourceforge.net/ULMUL/index.ja.html
|
174
174
|
* ソースは http://t-nissie.users.sourceforge.net/ULMUL/README-ja (この文章)
|
175
175
|
|
176
|
-
=== ulmul2xhtmlは消します
|
177
|
-
次のバージョン (0.6.x) からulmul2xhtmlは消します。
|
178
|
-
|
179
176
|
== ulmul2mathjaxの使用方法
|
180
177
|
数式を MathJax http://www.mathjax.org/ で出力します。
|
181
178
|
$ ulmul2mathjax --help
|
@@ -193,11 +190,11 @@ ulmul2latexはまだ発展途上です。
|
|
193
190
|
== 最新のソース・ツリーの入手方法
|
194
191
|
ソース・ツリーはGitHubに置いてあります。
|
195
192
|
git(1)コマンドを使って
|
196
|
-
$ git clone
|
193
|
+
$ git clone https://github.com/t-nissie/ULMUL.git ulmul
|
197
194
|
と匿名でcloneできます。
|
198
195
|
|
199
196
|
== 著作権表示
|
200
|
-
Copyright © 2008,2009,2010,2011,2012,2013,2014,2015,2017,2022 by Takeshi Nishimatsu
|
197
|
+
Copyright © 2008,2009,2010,2011,2012,2013,2014,2015,2017,2022,2024 by Takeshi Nishimatsu
|
201
198
|
|
202
199
|
ulmul.rb is distributed in the hope that
|
203
200
|
it will be useful, but WITHOUT ANY WARRANTY.
|
data/Rakefile
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
#! /usr/bin/env rake
|
2
2
|
# -*-Ruby-*-
|
3
|
-
# Time-stamp: <2017-08-31 06:08:40 takeshi>
|
4
3
|
# Author: Takeshi Nishimatsu
|
5
4
|
##
|
6
5
|
$LOAD_PATH.unshift('lib')
|
@@ -35,6 +34,7 @@ Rake::TestTask.new do |t|
|
|
35
34
|
t.libs << 'lib' << 'test'
|
36
35
|
t.pattern = 'test/**/*_test.rb'
|
37
36
|
t.verbose = true
|
37
|
+
t.warning = false
|
38
38
|
end
|
39
39
|
|
40
40
|
# Rake::RDocTask.new do |rdoc|
|
data/index.en.html
CHANGED
@@ -54,14 +54,13 @@ Table of Contents:
|
|
54
54
|
<li><a href="#LABEL-19">Examples</a></li>
|
55
55
|
<li><a href="#LABEL-20">Command options</a></li>
|
56
56
|
<li><a href="#LABEL-27">ULMUL and Slidy examples</a></li>
|
57
|
-
<li><a href="#LABEL-28">ulmul2xhtml is obsolete</a></li>
|
58
57
|
</ul></li>
|
59
|
-
<li><a href="#LABEL-
|
60
|
-
<li><a href="#LABEL-
|
61
|
-
<li><a href="#LABEL-
|
62
|
-
<li><a href="#LABEL-
|
63
|
-
<li><a href="#LABEL-
|
64
|
-
<li><a href="#LABEL-
|
58
|
+
<li><a href="#LABEL-28">Usage of ulmul2mathjax</a></li>
|
59
|
+
<li><a href="#LABEL-29">Usage of ulmul2latex</a></li>
|
60
|
+
<li><a href="#LABEL-30">TODO</a></li>
|
61
|
+
<li><a href="#LABEL-31">Repository in GitHub</a></li>
|
62
|
+
<li><a href="#LABEL-32">Copying</a></li>
|
63
|
+
<li><a href="#LABEL-33">Author of ULMUL</a></li>
|
65
64
|
</ul>
|
66
65
|
</div>
|
67
66
|
|
@@ -353,15 +352,11 @@ If you do not need the Table of Contents, specify 1.
|
|
353
352
|
<li>Its source is <a href="http://t-nissie.users.sourceforge.net/ULMUL/README-en">http://t-nissie.users.sourceforge.net/ULMUL/README-en</a> (this document)</li>
|
354
353
|
</ul></li>
|
355
354
|
</ul>
|
356
|
-
<h3 id="LABEL-28">ulmul2xhtml is obsolete</h3>
|
357
|
-
<p>
|
358
|
-
ulmul2xhtml will be removed from next version 0.6.x.
|
359
|
-
</p>
|
360
355
|
</div>
|
361
356
|
|
362
357
|
|
363
358
|
<div class="slide">
|
364
|
-
<h2 id="LABEL-
|
359
|
+
<h2 id="LABEL-28">Usage of ulmul2mathjax</h2>
|
365
360
|
<p>
|
366
361
|
It uses MathJax <a href="http://www.mathjax.org/">http://www.mathjax.org/</a> to show equations.
|
367
362
|
</p>
|
@@ -374,7 +369,7 @@ $ ulmul2mathjax -s ulmul2html5.css -j https://cdn.rawgit.com/google/code-prettif
|
|
374
369
|
|
375
370
|
|
376
371
|
<div class="slide">
|
377
|
-
<h2 id="LABEL-
|
372
|
+
<h2 id="LABEL-29">Usage of ulmul2latex</h2>
|
378
373
|
<pre>
|
379
374
|
$ ulmul2latex --help
|
380
375
|
$ ulmul2latex test.ulmul | tee test.tex
|
@@ -389,7 +384,7 @@ ulmul2latex is still under development. Sorry.
|
|
389
384
|
|
390
385
|
|
391
386
|
<div class="slide">
|
392
|
-
<h2 id="LABEL-
|
387
|
+
<h2 id="LABEL-30">TODO</h2>
|
393
388
|
|
394
389
|
<ul>
|
395
390
|
<li>More useful error messages for syntax errors.</li>
|
@@ -404,20 +399,20 @@ For more, see TODO file.
|
|
404
399
|
|
405
400
|
|
406
401
|
<div class="slide">
|
407
|
-
<h2 id="LABEL-
|
402
|
+
<h2 id="LABEL-31">Repository in GitHub</h2>
|
408
403
|
<p>
|
409
404
|
You can clone the source tree of ULMUL from GitHub with git(1) command:
|
410
405
|
</p>
|
411
406
|
<pre>
|
412
|
-
$ git clone
|
407
|
+
$ git clone https://github.com/t-nissie/ULMUL.git ulmul
|
413
408
|
</pre>
|
414
409
|
</div>
|
415
410
|
|
416
411
|
|
417
412
|
<div class="slide">
|
418
|
-
<h2 id="LABEL-
|
413
|
+
<h2 id="LABEL-32">Copying</h2>
|
419
414
|
<p>
|
420
|
-
Copyright © 2008,2009,2010,2011,2012,2013,2014,2015,2017,2022 by Takeshi Nishimatsu
|
415
|
+
Copyright © 2008,2009,2010,2011,2012,2013,2014,2015,2017,2022,2024 by Takeshi Nishimatsu
|
421
416
|
</p>
|
422
417
|
<p>
|
423
418
|
ulmul.rb is distributed in the hope that
|
@@ -439,7 +434,7 @@ and <a href="http://www.w3.org/Consortium/Legal/copyright-software">http://www.w
|
|
439
434
|
|
440
435
|
|
441
436
|
<div class="slide">
|
442
|
-
<h2 id="LABEL-
|
437
|
+
<h2 id="LABEL-33">Author of ULMUL</h2>
|
443
438
|
<p>
|
444
439
|
Takeshi Nishimatsu (t_nissie{at}yahoo.co.jp) <a href="http://t-nissie.users.sourceforge.net/">http://t-nissie.users.sourceforge.net/</a>
|
445
440
|
</p>
|
data/index.ja.html
CHANGED
@@ -54,13 +54,12 @@ Table of Contents:
|
|
54
54
|
<li><a href="#LABEL-19">例</a></li>
|
55
55
|
<li><a href="#LABEL-20">コマンド・ライン・オプション</a></li>
|
56
56
|
<li><a href="#LABEL-27">実際の使用例</a></li>
|
57
|
-
<li><a href="#LABEL-28">ulmul2xhtmlは消します</a></li>
|
58
57
|
</ul></li>
|
59
|
-
<li><a href="#LABEL-
|
60
|
-
<li><a href="#LABEL-
|
61
|
-
<li><a href="#LABEL-
|
62
|
-
<li><a href="#LABEL-
|
63
|
-
<li><a href="#LABEL-
|
58
|
+
<li><a href="#LABEL-28">ulmul2mathjaxの使用方法</a></li>
|
59
|
+
<li><a href="#LABEL-29">ulmul2latexの使用方法</a></li>
|
60
|
+
<li><a href="#LABEL-30">最新のソース・ツリーの入手方法</a></li>
|
61
|
+
<li><a href="#LABEL-31">著作権表示</a></li>
|
62
|
+
<li><a href="#LABEL-32">作者</a></li>
|
64
63
|
</ul>
|
65
64
|
</div>
|
66
65
|
|
@@ -336,15 +335,11 @@ JavaScriptのファイル名を指定します。
|
|
336
335
|
<li>ソースは <a href="http://t-nissie.users.sourceforge.net/ULMUL/README-ja">http://t-nissie.users.sourceforge.net/ULMUL/README-ja</a> (この文章)</li>
|
337
336
|
</ul></li>
|
338
337
|
</ul>
|
339
|
-
<h3 id="LABEL-28">ulmul2xhtmlは消します</h3>
|
340
|
-
<p>
|
341
|
-
次のバージョン (0.6.x) からulmul2xhtmlは消します。
|
342
|
-
</p>
|
343
338
|
</div>
|
344
339
|
|
345
340
|
|
346
341
|
<div class="slide">
|
347
|
-
<h2 id="LABEL-
|
342
|
+
<h2 id="LABEL-28">ulmul2mathjaxの使用方法</h2>
|
348
343
|
<p>
|
349
344
|
数式を MathJax <a href="http://www.mathjax.org/">http://www.mathjax.org/</a> で出力します。
|
350
345
|
</p>
|
@@ -357,7 +352,7 @@ $ ulmul2mathjax -s ulmul2html5.css -j https://cdn.rawgit.com/google/code-prettif
|
|
357
352
|
|
358
353
|
|
359
354
|
<div class="slide">
|
360
|
-
<h2 id="LABEL-
|
355
|
+
<h2 id="LABEL-29">ulmul2latexの使用方法</h2>
|
361
356
|
<pre>
|
362
357
|
$ ulmul2latex --help
|
363
358
|
$ ulmul2latex test.ulmul | tee test.tex
|
@@ -372,13 +367,13 @@ ulmul2latexはまだ発展途上です。
|
|
372
367
|
|
373
368
|
|
374
369
|
<div class="slide">
|
375
|
-
<h2 id="LABEL-
|
370
|
+
<h2 id="LABEL-30">最新のソース・ツリーの入手方法</h2>
|
376
371
|
<p>
|
377
372
|
ソース・ツリーはGitHubに置いてあります。
|
378
373
|
git(1)コマンドを使って
|
379
374
|
</p>
|
380
375
|
<pre>
|
381
|
-
$ git clone
|
376
|
+
$ git clone https://github.com/t-nissie/ULMUL.git ulmul
|
382
377
|
</pre>
|
383
378
|
<p>
|
384
379
|
と匿名でcloneできます。
|
@@ -387,9 +382,9 @@ $ git clone git@github.com:t-nissie/ULMUL.git ulmul
|
|
387
382
|
|
388
383
|
|
389
384
|
<div class="slide">
|
390
|
-
<h2 id="LABEL-
|
385
|
+
<h2 id="LABEL-31">著作権表示</h2>
|
391
386
|
<p>
|
392
|
-
Copyright © 2008,2009,2010,2011,2012,2013,2014,2015,2017,2022 by Takeshi Nishimatsu
|
387
|
+
Copyright © 2008,2009,2010,2011,2012,2013,2014,2015,2017,2022,2024 by Takeshi Nishimatsu
|
393
388
|
</p>
|
394
389
|
<p>
|
395
390
|
ulmul.rb is distributed in the hope that
|
@@ -411,7 +406,7 @@ and <a href="http://www.w3.org/Consortium/Legal/copyright-software">http://www.w
|
|
411
406
|
|
412
407
|
|
413
408
|
<div class="slide">
|
414
|
-
<h2 id="LABEL-
|
409
|
+
<h2 id="LABEL-32">作者</h2>
|
415
410
|
<p>
|
416
411
|
西松タケシ (t_nissie{at}yahoo.co.jp) <a href="http://t-nissie.users.sourceforge.net/">http://t-nissie.users.sourceforge.net/</a>
|
417
412
|
</p>
|
data/lib/ulmul.rb
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
# -*- coding: utf-8 -*-
|
3
3
|
# ulmul.rb
|
4
|
-
# Time-stamp: <2022-07-13 07:03:30 takeshi>
|
5
4
|
# Author: Takeshi Nishimatsu
|
6
5
|
##
|
7
6
|
require "rubygems"
|
@@ -83,7 +82,7 @@ end
|
|
83
82
|
class Ulmul
|
84
83
|
include AASM
|
85
84
|
include Itemize
|
86
|
-
VERSION = '0.
|
85
|
+
VERSION = '0.7.0'
|
87
86
|
|
88
87
|
aasm.initial_state :st_ground
|
89
88
|
|
@@ -351,9 +350,12 @@ module HTML
|
|
351
350
|
@body << "<p id=\"#{@env_label}\" class=\"code caption\">\n"
|
352
351
|
@body << " Code #{@codes.length}: " << @subs_rules.call(@env_caption) << "(download: <a href=\"#{@env_file}\">#{File.basename(@env_file)}</a>)" << "</p>\n"
|
353
352
|
@body << "<pre class=\"prettyprint\">\n"
|
354
|
-
|
355
|
-
|
356
|
-
|
353
|
+
begin
|
354
|
+
open(@env_file){|f| @body << f.read.gsub(/&/,'&').gsub(/</,'<').gsub(/>/,'>')}
|
355
|
+
rescue Errno::ENOENT => ex
|
356
|
+
STDERR << ex << "\n"
|
357
|
+
exit 1
|
358
|
+
end
|
357
359
|
@body << "</pre>\n"
|
358
360
|
end
|
359
361
|
|
@@ -477,8 +479,13 @@ module LaTeX
|
|
477
479
|
def cb_env_end2()
|
478
480
|
case @env_label
|
479
481
|
when /^Fig:/
|
480
|
-
|
481
|
-
|
482
|
+
begin
|
483
|
+
width = EXIFR::JPEG.new(@env_file).width
|
484
|
+
height = EXIFR::JPEG.new(@env_file).height
|
485
|
+
rescue Errno::ENOENT => ex
|
486
|
+
STDERR << ex << "\n"
|
487
|
+
exit 1
|
488
|
+
end
|
482
489
|
@body << "\\begin{figure}\n" << " \\center\n \\includegraphics[width=5cm,bb=0 0 #{width} #{height}]{#{@env_file}}\n"
|
483
490
|
@body << ' \caption{' << @subs_rules.call(@env_caption).strip << "}\n"
|
484
491
|
@body << " \\label{#{@env_label}}\n" << "\\end{figure}\n"
|
@@ -491,9 +498,12 @@ module LaTeX
|
|
491
498
|
@body << "\\end{table}\n"
|
492
499
|
when /^Code:/
|
493
500
|
@body << "\\begin{lstlisting}[caption={#{@subs_rules.call(@env_caption).strip}},label=#{@env_label}]\n"
|
494
|
-
|
495
|
-
|
496
|
-
|
501
|
+
begin
|
502
|
+
open(@env_file){|f| @body << f.read}
|
503
|
+
rescue Errno::ENOENT => ex
|
504
|
+
STDERR << ex << "\n"
|
505
|
+
exit 1
|
506
|
+
end
|
497
507
|
@body << "\\end{lstlisting}\n"
|
498
508
|
end
|
499
509
|
end
|
data/ulmul.gemspec
CHANGED
@@ -1,13 +1,11 @@
|
|
1
1
|
# ulmul.gemspec -*-ruby-*-
|
2
|
-
# Time-stamp: <2022-07-13 06:53:14 takeshi>
|
3
2
|
# Author: Takeshi Nishimatsu
|
4
3
|
##
|
5
4
|
Gem::Specification.new do |s|
|
6
5
|
s.name = 'ulmul'
|
7
6
|
|
8
7
|
s.bindir = 'bin'
|
9
|
-
s.executables = ['ulmul2html5', '
|
10
|
-
s.default_executable= 'ulmul2html5'
|
8
|
+
s.executables = ['ulmul2html5', 'ulmul2latex', 'ulmul2mathjax']
|
11
9
|
|
12
10
|
s.summary = 'ULMUL is an Ultra Lightweight Mark-Up Language'
|
13
11
|
s.files = ['lib/ulmul.rb', 'test/unit/ulmul_test.rb',
|
@@ -30,12 +28,11 @@ Gem::Specification.new do |s|
|
|
30
28
|
s.homepage = 'http://t-nissie.users.sourceforge.net/ULMUL/'
|
31
29
|
s.test_files = ['test/unit/ulmul_test.rb']
|
32
30
|
|
33
|
-
s.has_rdoc = true
|
34
31
|
# s.extra_rdoc_files = %w(README)
|
35
32
|
|
36
|
-
s.add_dependency('math_ml',
|
37
|
-
s.add_dependency('aasm',
|
38
|
-
s.add_dependency('exifr',
|
33
|
+
s.add_dependency('math_ml', "~> 1.0", '>= 1.0.0')
|
34
|
+
s.add_dependency('aasm', "~> 5.5", '>= 5.5.0')
|
35
|
+
s.add_dependency('exifr', "~> 1.4", '>= 1.4.0')
|
39
36
|
|
40
37
|
s.description = <<-EOF
|
41
38
|
ULMUL is an original Ultra Lightweight MarkUp Language.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ulmul
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Takeshi Nishimatsu
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: math_ml
|
@@ -16,54 +16,60 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0
|
19
|
+
version: '1.0'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 1.0.0
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
27
|
- - "~>"
|
25
28
|
- !ruby/object:Gem::Version
|
26
|
-
version: '0
|
29
|
+
version: '1.0'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 1.0.0
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: aasm
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
30
36
|
requirements:
|
31
37
|
- - "~>"
|
32
38
|
- !ruby/object:Gem::Version
|
33
|
-
version: '5.
|
39
|
+
version: '5.5'
|
34
40
|
- - ">="
|
35
41
|
- !ruby/object:Gem::Version
|
36
|
-
version: 5.
|
42
|
+
version: 5.5.0
|
37
43
|
type: :runtime
|
38
44
|
prerelease: false
|
39
45
|
version_requirements: !ruby/object:Gem::Requirement
|
40
46
|
requirements:
|
41
47
|
- - "~>"
|
42
48
|
- !ruby/object:Gem::Version
|
43
|
-
version: '5.
|
49
|
+
version: '5.5'
|
44
50
|
- - ">="
|
45
51
|
- !ruby/object:Gem::Version
|
46
|
-
version: 5.
|
52
|
+
version: 5.5.0
|
47
53
|
- !ruby/object:Gem::Dependency
|
48
54
|
name: exifr
|
49
55
|
requirement: !ruby/object:Gem::Requirement
|
50
56
|
requirements:
|
51
57
|
- - "~>"
|
52
58
|
- !ruby/object:Gem::Version
|
53
|
-
version: '1.
|
59
|
+
version: '1.4'
|
54
60
|
- - ">="
|
55
61
|
- !ruby/object:Gem::Version
|
56
|
-
version: 1.
|
62
|
+
version: 1.4.0
|
57
63
|
type: :runtime
|
58
64
|
prerelease: false
|
59
65
|
version_requirements: !ruby/object:Gem::Requirement
|
60
66
|
requirements:
|
61
67
|
- - "~>"
|
62
68
|
- !ruby/object:Gem::Version
|
63
|
-
version: '1.
|
69
|
+
version: '1.4'
|
64
70
|
- - ">="
|
65
71
|
- !ruby/object:Gem::Version
|
66
|
-
version: 1.
|
72
|
+
version: 1.4.0
|
67
73
|
description: |2
|
68
74
|
ULMUL is an original Ultra Lightweight MarkUp Language.
|
69
75
|
You can write TeX-style equations in ULMUL texts.
|
@@ -76,7 +82,6 @@ description: |2
|
|
76
82
|
email: t_nissie@yahoo.co.jp
|
77
83
|
executables:
|
78
84
|
- ulmul2html5
|
79
|
-
- ulmul2xhtml
|
80
85
|
- ulmul2latex
|
81
86
|
- ulmul2mathjax
|
82
87
|
extensions: []
|
@@ -91,7 +96,6 @@ files:
|
|
91
96
|
- bin/ulmul2html5
|
92
97
|
- bin/ulmul2latex
|
93
98
|
- bin/ulmul2mathjax
|
94
|
-
- bin/ulmul2xhtml
|
95
99
|
- favicon.ico
|
96
100
|
- hello.c
|
97
101
|
- index.en.html
|
@@ -126,7 +130,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
126
130
|
- !ruby/object:Gem::Version
|
127
131
|
version: '0'
|
128
132
|
requirements: []
|
129
|
-
rubygems_version: 3.
|
133
|
+
rubygems_version: 3.5.10
|
130
134
|
signing_key:
|
131
135
|
specification_version: 4
|
132
136
|
summary: ULMUL is an Ultra Lightweight Mark-Up Language
|
data/bin/ulmul2xhtml
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# ulmul2xhtml
|
3
|
-
# Time-stamp: <2011-03-31 19:29:32 takeshi>
|
4
|
-
# Author: Takeshi Nishimatsu
|
5
|
-
##
|
6
|
-
=begin
|
7
|
-
= ulmul2xhtml
|
8
|
-
== Usage
|
9
|
-
=== Examples
|
10
|
-
% ulmul2xhtml foo.txt
|
11
|
-
% ulmul2xhtml --style=style.css --name="John Smith" foo.ulmul > foo.html
|
12
|
-
% ulmul2xhtml --style=ulmul-slidy.css --javascript=ulmul-slidy.js \
|
13
|
-
--name="Takeshi Nishimatsu" presentation.txt > presentation.xhtml
|
14
|
-
=end
|
15
|
-
require "ulmul"
|
16
|
-
# Local variables:
|
17
|
-
# compile-command: "ruby -I ../lib ulmul2xhtml -s ../ulmul2xhtml.css -s ../google-code-prettify/src/prettify.css -j ../google-code-prettify/src/prettify.js ../lib/test.ulmul | tee test.html"
|
18
|
-
# End:
|