#!/usr/bin/env ruby require 'mediawiki' page = Mediawiki::Page.new("mypage"," this is an [[example]] of a mediawiki page complete with [[wikilinks]] and the like, there are [[two]] [[links]] on this line. [[Category:foo]] [[Category:bar]] the last line.".split("\n")) puts page.links.map { |l| l.link }.join("\n")