我有一个github网页。如何使页面显示纯粹的PDF格式?我的cv?
为了澄清,我希望页面只用pdf填充 - 而不是任何标题等。
答案 0 :(得分:4)
只需将您的pdf提交到您的仓库中,就像其他文件一样可以访问它。
例如,我的简历已提交至https://github.com/xiongchiamiov/xiongchiamiov.github.com/blob/master/about/resume.pdf我的回购,可在https://changedmy.name/about/resume.pdf网站上找到(我已为changedmy.name
设置了CNAME。)
答案 1 :(得分:1)
您的apply plugin: 'android-sdk-manager'
中可能有一个JS重定向指向一个pdf文件,该文件也在您的github-pages repo中。
假设您的文件结构如下: -
index.html
然后你的代码应该是这样的。
index.html
- cv(folder)
-----cv.pdf (your cv)
答案 2 :(得分:1)
您可以使用iframe或类似https://github.com/mozilla/pdf.js的内容嵌入PDF,而不是重定向到PDF。
通过这种方式,可以在页面中访问PDF,并且可以防止在未在浏览器中查看的情况下下载PDF。
不可能使页面“纯粹”显示为pdf,为此,您需要更改响应头,这显然是github页面无法实现的。
答案 3 :(得分:0)
你也可以这样做:
<html lang="fr">
<head>
<!-- note the meta tag -->
<meta http-equiv="refresh" content="0; url=http://yourprofile.github.io/cv.pdf" />
<meta charset="utf-8">
<title>Will CV</title>
</head>
<body>
</body>
</html>
有关详细信息,请参阅Redirect from an HTML page。
答案 4 :(得分:-1)
Github使用PDF.js来显示PDF,例如https://github.com/mozilla/pdf.js/blob/master/web/compressed.tracemonkey-pldi-09.pdf,您可以找到包含网址的iframe,用于嵌入简历(例如https://render.githubusercontent.com/view/pdf?commit=b261203018f847c89e05bb4c03c820fad0c90672&enc_url=68747470733a2f2f7261772e67697468756275736572636f6e74656e742e636f6d2f6d6f7a696c6c612f7064662e6a732f623236313230333031386638343763383965303562623463303363383230666164306339303637322f7765622f636f6d707265737365642e74726163656d6f6e6b65792d706c64692d30392e706466&nwo=mozilla%2Fpdf.js&path=web%2Fcompressed.tracemonkey-pldi-09.pdf&repository_id=1663468#13eff6e4-ecdb-4fe1-85e4-b7a468697e26)