Questions tagged [octopress]

Octopress is a framework designed by Brandon Mathis for Jekyll, the blog aware static site generator powering Github Pages.

Octopress is a framework designed by Brandon Mathis for Jekyll, the blog aware static site generator powering Github Pages.

You can connect with Octopress on:

353 questions
5
votes
1 answer

markdown syntax validator

Are there any specific rules for writing markdown when using Octopress(Jekyll)? I've already tried pasting it to: http://markable.in/editor/ and it looks fine but when I use rake preview to generate the html from the markdown source it just…
user225269
  • 10,007
  • 65
  • 169
  • 241
5
votes
1 answer

Markdown citations in octopress

I'm using markdown a lot and would like to have a few pages that mimic the behavior of wiki reference. For example: Blah blah blah {{Some Reference}} I'll be adding a lot of references throughout a few pages and am not sure how to…
ere
  • 1,689
  • 1
  • 19
  • 39
4
votes
1 answer

Octopress blank page when add backtick code block

I am wondering why I am getting blank page when I add backtick code block with specific language? _config.yml markdown: rdiscount rdiscount: extensions: - autolink - footnotes - smart pygments: false # default python pygments have…
Phonbopit
  • 3,403
  • 3
  • 19
  • 27
4
votes
1 answer

Add properties to a page from a Jekyll plugin

Say I want to have a page with content like this:

{{page.comment_count}} Comment(s)

{% for c in page.comment_list %}
{{c.title}}
{{c.content}}
{% endfor %} There are no variables on the page named…
IQAndreas
  • 7,014
  • 4
  • 36
  • 63
4
votes
2 answers

How do I deploy an Octopress blog to an existing gh-pages static site?

So deploying to a gh-pages branch on Github with Octopress is relatively simple. It is spelled out here. However, I already have a static site hosted on my gh-pages branch (and the source stored in the master branch). So how do I keep my static…
marcamillion
  • 29,563
  • 49
  • 161
  • 337
4
votes
1 answer

Auto generate pages links to navigation bar on Octopress

I created many pages under tutorial folder. those pages are tutorial/ruby tutorial/python tutorial/c However, I can only see posts in my Octopress blog, but pages can not be seem. only posts can be seem. If I want to access those pages under…
newBike
  • 12,989
  • 25
  • 88
  • 158
4
votes
1 answer

Octopress deployment to gh-pages

I made a username.github.io repo and I pushed my current Octopress blog files into the master branch so that I can track the changes I made to the whole blog. Next, I want it to appear in the gh-pages branch so I used rake setup_github_pages, then…
user1685185
4
votes
3 answers

How can I keep my blog git repository clean?

I want to create a blog using the Octopress blog framework, which is based on Jekyll, but the documentation just says to clone the github repository. It feels a bit weird to have the whole framework history into my blog repository. I don't really…
Uflex
  • 1,316
  • 1
  • 12
  • 28
4
votes
1 answer

"spawn.h not found" while installing octopress on Cygwin

I have been trying to install octopress on cygwin. I have googled but no avail. I hope that someone can suggest a hack (no matter how complicated) to resolve this. I followed the octopress installation instructions. Everything went smoothly till the…
Kaushal Modi
  • 990
  • 2
  • 13
  • 40
4
votes
2 answers

How to update my Octopress blog correctly

I have a dilemma: I have already done rake deploy and my Octopress blog works fine. The documentation says that I have to do another 3 steps: git add . git commit -m 'message' git push origin source Ok, the first two work great, but the third…
thxou
  • 691
  • 7
  • 19
4
votes
1 answer

Disable asides on a per-page basis in Octopress?

Hiding asides in Ocotopress seems to indicate how to do this on a site-wide basis, but I'd like to be able to have only specific pages collapse the sidebar.
ajdecon
  • 230
  • 2
  • 8
4
votes
3 answers

adding an anchor in octopress post

I am using Octopress and I know that in order to add an image in my post, instead of writing: alt I can write: {% img class src alt %} And, instead if writing: text I can…
Naor
  • 21,508
  • 42
  • 135
  • 250
4
votes
4 answers

How do I disable line numbers in an Octopress codeblock?

I see some Octopress sites that have no line numbers in their codeblocks. How do you do that? Is there some attribute in {% codeblock %} tag? Or do I have to modify the codeblock plugin source?
delta
  • 3,643
  • 13
  • 21
4
votes
1 answer

How can I integrate Octopress into my Rails app?

I'm diving into web development and I built my personal website using Ruby on Rails 3.1 and I'd like to add a blog to it. Octopress sounds really awesome, and it's written in Ruby, but I can't find a single resource online that discusses…
BeachRunnerFred
  • 17,150
  • 34
  • 132
  • 231
4
votes
2 answers

octopress index page

I have created an Octopress blog. My Blog page contains all my posts one by the other and I would like to change this. I saw these pages: http://linuxmoz.com/, http://codingpraxis.com/ they contain a paragraph of each post and "Read On" button. I…
Naor
  • 21,508
  • 42
  • 135
  • 250
1 2
3
23 24