CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 28 Aug 2025 07:39:27 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100816084353
location: https://web.archive.org/web/20100816084353/https://github.com/rtomayko/rpeg-markdown/
server-timing: captures_list;dur=0.554288, exclusion.robots;dur=0.020916, exclusion.robots.policy;dur=0.010341, esindex;dur=0.013834, cdx.remote;dur=29.960994, LoadShardBlock;dur=238.880670, PetaboxLoader3.datanode;dur=136.609392, PetaboxLoader3.resolve;dur=43.256033
x-app-server: wwwb-app217
x-ts: 302
x-tr: 295
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app217; 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: Thu, 28 Aug 2025 07:39:27 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.67
x-archive-orig-date: Mon, 16 Aug 2010 08:43:49 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "737b4af11b923da948cc27fe3057e9e3"
x-archive-orig-x-runtime: 54ms
x-archive-orig-content-length: 30197
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 16 Aug 2010 08:43:53 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Tue, 10 Jun 2008 04:00:58 GMT", ; rel="prev memento"; datetime="Sat, 27 Feb 2010 01:39:41 GMT", ; rel="memento"; datetime="Mon, 16 Aug 2010 08:43:53 GMT", ; rel="next memento"; datetime="Fri, 12 Aug 2011 12:45:10 GMT", ; rel="last memento"; datetime="Mon, 25 Nov 2024 17:40:40 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_17_20100816080539_crawl103_IndexOnly-c/52_17_20100816084116_crawl101.arc.gz
server-timing: captures_list;dur=0.461929, exclusion.robots;dur=0.016948, exclusion.robots.policy;dur=0.008265, esindex;dur=0.010036, cdx.remote;dur=15.215432, LoadShardBlock;dur=109.545307, PetaboxLoader3.datanode;dur=197.638940, load_resource;dur=240.534879, PetaboxLoader3.resolve;dur=84.873198
x-app-server: wwwb-app217
x-ts: 200
x-tr: 423
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 master - GitHub
rtomayko / rpeg-markdown
- Source
- Commits
- Network (3)
- Issues (3)
- Downloads (4)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
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 | Mon Jun 07 10:19:34 -0700 2010 | bring LICENSE in line with peg-markdown - dual ... [rtomayko] |
![]() |
README.markdown | Fri Aug 08 15:27:28 -0700 2008 | Added to_latex and to_groff_mm methods to PEGMa... [jgm] |
![]() |
Rakefile | Fri Jan 15 06:57:40 -0800 2010 | 1.4.6 release [rtomayko] |
![]() |
bin/ | Wed May 21 00:50:49 -0700 2008 | first working version of extension with tests [rtomayko] |
![]() |
ext/ | Fri Jan 15 06:55:54 -0800 2010 | bring peg-markdown up to 0.4.6 [rtomayko] |
![]() |
lib/ | Fri Aug 01 23:21:26 -0700 2008 | Version 1.0 [rtomayko] |
![]() |
peg-markdown - a20bd44 | Fri Jan 15 06:55:54 -0800 2010 | bring peg-markdown up to 0.4.6 [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>
>> puts Markdown.new('_Hello World!_').to_latex
\emph{Hello World!}
>> puts Markdown.new('_Hello World!_').to_groff_mm
.P
\fIHello world!\fR
>> 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.
- © 2010 GitHub Inc. All rights reserved.
- Terms of Service
- Privacy
- Security