CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sun, 31 Aug 2025 01:26:50 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20080917021406
location: https://web.archive.org/web/20080917021406/https://github.com/rtomayko/rpeg-markdown/tree/v1.0
server-timing: captures_list;dur=1.019491, exclusion.robots;dur=0.032663, exclusion.robots.policy;dur=0.014454, esindex;dur=0.019120, cdx.remote;dur=20.324634, LoadShardBlock;dur=523.769399, PetaboxLoader3.datanode;dur=396.683753, PetaboxLoader3.resolve;dur=33.122780
x-app-server: wwwb-app223
x-ts: 302
x-tr: 588
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app223; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sun, 31 Aug 2025 01:26:51 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.31
x-archive-orig-date: Wed, 17 Sep 2008 02:14:06 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 2.12571
x-archive-orig-etag: "15d339fcc530ef89859f04bce6ab6ed5"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 16956
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Wed, 17 Sep 2008 02:14:06 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 17 Sep 2008 02:14:06 GMT", ; rel="memento"; datetime="Wed, 17 Sep 2008 02:14:06 GMT", ; rel="last memento"; datetime="Wed, 17 Sep 2008 02:14:06 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_5_20080917013157_crawl107-c/52_5_20080917021256_crawl103.arc.gz
server-timing: captures_list;dur=0.549562, exclusion.robots;dur=0.016810, exclusion.robots.policy;dur=0.007365, esindex;dur=0.015359, cdx.remote;dur=68.385437, LoadShardBlock;dur=442.503840, PetaboxLoader3.datanode;dur=382.468469, PetaboxLoader3.resolve;dur=183.669623, load_resource;dur=220.456945
x-app-server: wwwb-app223
x-ts: 200
x-tr: 777
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
rtomayko's rpeg-markdown at v1.0 — GitHub
This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Description: | Experimental Ruby extension based on peg-markdown |
Clone URL: |
git://github.com/rtomayko/rpeg-markdown.git
Give this clone URL to anyone.
git clone git://github.com/rtomayko/rpeg-markdown.git
|
Search Repo: |
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Fri Aug 01 21:11:35 -0700 2008 | ignore stuff [rtomayko] |
![]() |
.gitmodules | Fri Aug 01 21:02:56 -0700 2008 | point peg-markdown submodule at jgm's master [rtomayko] |
![]() |
LICENSE | Tue May 20 11:35:55 -0700 2008 | initial commit of skeleton extension project [rtomayko] |
![]() |
README.markdown | Fri Aug 01 23:21:26 -0700 2008 | Version 1.0 [rtomayko] |
![]() |
Rakefile | Fri Aug 01 23:21:26 -0700 2008 | Version 1.0 [rtomayko] |
![]() |
bin/ | Wed May 21 00:50:49 -0700 2008 | first working version of extension with tests [rtomayko] |
![]() |
ext/ | Fri Aug 01 23:08:06 -0700 2008 | filter_html/filter_styles support; extension/cl... [rtomayko] |
![]() |
lib/ | Fri Aug 01 23:21:26 -0700 2008 | Version 1.0 [rtomayko] |
![]() |
peg-markdown → 656f5c3 | Fri Aug 01 21:02:56 -0700 2008 | point peg-markdown submodule at jgm's master [rtomayko] |
![]() |
test/ | Fri Aug 01 23:08:06 -0700 2008 | filter_html/filter_styles support; extension/cl... [rtomayko] |
README.markdown
Ruby PEG Markdown
An extension library around John MacFarlane's fast implementation of Markdown in C.
Synopsis
>> require 'markdown'
>> puts Markdown.new('Hello, world.').to_html
<p>Hello, world.</p>
>> puts Markdown.new('_Hello World!_', :smart, :filter_html).to_html
<p><em>Hello World!</em></p>
>> PEGMarkdown.new('Hello! World!')
Installation / Hacking
This library requires a recent version of glib2. All modern GNU userland systems should be fine.
Install from GEM:
$ sudo gem install rpeg-markdown
Hacking:
$ git clone git://github.com/rtomayko/rpeg-markdown.git
$ cd rpeg-markdown
$ rake test
Patches happily accepted via fork or email.
Changes
COPYING
The peg-markdown sources are licensed under the GPL and the Ruby PEG Markdown extension sources adopts this license. See the file LICENSE included with this distribution for more information.
This feature is coming soon. Sit tight!