Recent Posts by distler

Subscribe to Recent Posts by distler 122 posts found

posted almost 13 years ago
distler 123 posts

edited 12 years ago

Forum: Instiki – Topic: Bugs

Both this request (for “fenced” quotations and lists) and this one, in the other thread, are for extensions to the Markdown syntax in Maruku.

Frankly, I’m very reluctant to spend any time working on Maruku.

The author (who is no longer actively developing the software) insists on a GPL license, which conflicts with the licenses for both Instiki (Ruby) and Heterotic Beast (MIT). Unless he changes his mind (which seems unlikely, as I’ve asked several times), I would prefer to ditch Maruku, in favour of another Markdown engine.

Consequently, I’d rather spend my time extending that engine (whatever it turns out to be). Of course, for the present, I am still going to fix bugs in Maruku.

Update:

Well, OK, I didn’t exactly keep that promise…

 
posted almost 13 years ago
distler 123 posts

edited 10 years ago

Forum: Instiki – Topic: Shiny new forum

We can type equations

(1)(a b c d)(x y)=0 \fghighlight{red}{\begin{pmatrix}a&b \\ c&d\end{pmatrix}} \begin{pmatrix}x\\ y\end{pmatrix}=0

or put them in SVG graphics

Layer 1 ( a b c d ) ( x y ) = 0 \begin{pmatrix}a&b \ c&d\end{pmatrix} \begin{pmatrix}x\ y\end{pmatrix}=0

or type some code

require 'chunks/chunk'

# Contains all the methods for finding and replacing wiki links.
module WikiChunk
  include Chunk

  # A wiki reference is the top-level class for anything that refers to
  # another wiki page.
  class WikiReference < Chunk::Abstract
	
    # Name of the referenced page
    attr_reader :page_name

    # Name of the referenced page
    attr_reader :web_name

    # the referenced page
    def refpage
      @content.web.page(@page_name)
    end
	
end

and so forth.

Theorem

(Distler’s Theorem). Any given programming task is easier with Rails.