CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 30 Jul 2025 20:21:12 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100324005640
location: https://web.archive.org/web/20100324005640/https://github.com/defunkt/github-markup/issues
server-timing: captures_list;dur=0.675311, exclusion.robots;dur=0.026412, exclusion.robots.policy;dur=0.011984, esindex;dur=0.013972, cdx.remote;dur=8.734437, LoadShardBlock;dur=356.400916, PetaboxLoader3.datanode;dur=47.495462, PetaboxLoader3.resolve;dur=209.723901
x-app-server: wwwb-app210
x-ts: 302
x-tr: 395
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app210; 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: Wed, 30 Jul 2025 20:21:13 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Wed, 24 Mar 2010 00:56:40 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "01683430d9fb2e16b144a48992422a3e"
x-archive-orig-x-runtime: 174ms
x-archive-orig-content-length: 21074
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: Wed, 24 Mar 2010 00:56:40 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 24 Mar 2010 00:56:40 GMT", ; rel="memento"; datetime="Wed, 24 Mar 2010 00:56:40 GMT", ; rel="next memento"; datetime="Fri, 25 Dec 2015 03:23:24 GMT", ; rel="last memento"; datetime="Fri, 25 Dec 2015 03:23:24 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_14_20100323215239_crawl103-c/52_14_20100324005516_crawl101.arc.gz
server-timing: captures_list;dur=0.484329, exclusion.robots;dur=0.020726, exclusion.robots.policy;dur=0.010094, esindex;dur=0.010571, cdx.remote;dur=48.004525, LoadShardBlock;dur=378.263202, PetaboxLoader3.datanode;dur=238.333300, PetaboxLoader3.resolve;dur=268.401138, load_resource;dur=204.244321
x-app-server: wwwb-app210
x-ts: 200
x-tr: 695
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
Issues - defunkt/github-markup - GitHub
defunkt / github-markup
- Source
- Commits
- Network (7)
- Issues (2)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
Sort By:
Priority
Priority
|
Votes
Votes
|
Last Updated
Last Updated
Loading…
-
Try to figure out the markup type of extensionless README files
1 comment Created 25 days ago by avarIt's somewhat common especially for Perl projects to have POD markdown in a README file without a
.pod
extension, here's one example of this.The simplest way to support this would be to simply shell out to
file(1)
for README files:v rakudo (master) $ file README README: Perl POD document text
Comments
-
Comments
Please log in to comment.
Instead of figuring it out, make select box where one can choose it, perhaps to Admin panel of project.
Here is one example why valid files turns out badly:
Because some rST files require additional directives/etc which are not defined within GitHub, and is rendered very badly, see e.g. my Sphinkydoc README perfectly valid Sphinx documentation rST cannot be rendered in GitHub. So I have option by removing extension, to render it as plain text. But that is crude option, there should be a way to override it even though my file were named
README.rst
.