diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2011-12-15 17:41:02 +0100 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2011-12-15 17:41:02 +0100 |
commit | f65ad422bac16a5e5b962ff04f2d0752f72a4b00 (patch) | |
tree | b1da51e679c248394fa7b99dd89e7ab9745e476a | |
parent | cf9339049776eb83f4d6a66e29171fa3db726f83 (diff) | |
download | coderay-f65ad422bac16a5e5b962ff04f2d0752f72a4b00.tar.gz |
remove IDEA file
-rw-r--r-- | IDEA | 30 |
1 files changed, 0 insertions, 30 deletions
@@ -1,30 +0,0 @@ -Website tools:
-- convertor: reads and writes HTML (filter)
- <code lang="ruby">bla</code>
- =>
- <code class="CodeRay">...</code>
-
-- manual highlighter:
- 1. idea:
- special scanner (simply reading raydebug code should be enough)
- => makes it possible, easy to write
-
- 2. idea:
- => cooler, but more advanced
- => still easy to implement for all scanners at once
- preamble function (wrapper for scanners):
- for example, a method def:
- def foo
- shall be shown in the same color as method(foo), but
- without the def. so write:
- !def !foo
- Input is read into def foo and 4 (number of chars in preamble)
- Ruby scanner outputs some Tokens:
- reserved(def) method(foo)
- and chopped by a chop_preamble method giving:
- method(foo)
- PreambleTokens subclass?
- Tokens instance that takes options?
-
- 3. idea:
- Scanner handled solution --> forget it.
|