代码搜索:Markdown
找到约 32 项符合「Markdown」的源代码
代码结果 32
www.eeworm.com/read/213767/4912232
rb init.rb
require 'text_filter_plugin'
require 'typo_textfilter_markdown'
www.eeworm.com/read/213767/4912380
rb init.rb
require 'text_filter_plugin'
require 'typo_textfilter_textile_and_markdown'
www.eeworm.com/read/213767/4912405
bluecloth
#!/usr/bin/ruby
#
# = bluecloth
#
# Format one or more text files with the markdown formatter.
#
# = Synopsis
#
# bluecloth [OPTIONS] [FILES]
#
#
#
BEGIN {
require 'bluecloth'
require 'optparse'
www.eeworm.com/read/213767/4912395
rb bluecloth.rb
#!/usr/bin/ruby
#
# Bluecloth is a Ruby implementation of Markdown, a text-to-HTML conversion
# tool.
#
# == Synopsis
#
# doc = BlueCloth::new "
# ## Test document ##
#
# Just a simple te
www.eeworm.com/read/213767/4912406
rb redcloth.rb
# vim:ts=4:sw=4:
# = RedCloth - Textile and Markdown Hybrid for Ruby
#
# Homepage:: http://whytheluckystiff.net/ruby/redcloth/
# Author:: why the lucky stiff (http:/
www.eeworm.com/read/213767/4912400
txt ml-announce.txt
Hi,
I'd like to announce the alpha release of a Markdown library for [Ruby][1]
called "BlueCloth". It's mostly a direct port of the most recent Perl version,
minus the various plugin hooks and whatno
www.eeworm.com/read/213767/4912382
rakefile
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
desc 'Default: run unit tests.'
task :default => :test
desc 'Test the typo_textfilter_textile_and_markdown plugin.'
Rake::TestTask.new(
www.eeworm.com/read/213767/4912234
rakefile
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
desc 'Default: run unit tests.'
task :default => :test
desc 'Test the typo_textfilter_markdown plugin.'
Rake::TestTask.new(:test) do |t
www.eeworm.com/read/280962/4121173
py genhtml.py
#!/usr/bin/env python
import sys,re,os,shutil
from os import path
import cPickle as pickle
sys.path = ['../../lib', './lib'] + sys.path
import sqlalchemy
import gen_docstrings, read_markdown, toc
fr