Stop learning alone!

Learn faster and stay on-track by joining this free class with other self-learners.

Register for Structure and Interpretation of Computer Programs now.

Structure and Interpretation of Computer Programs

Class length: 13 weeks. Start anytime.

Creator: kday

Status: Established

Join this class!

Formatting forum posts

Forum posts are looking pretty ugly, is there a markup system that works with them? E.g. if HTML works then this should be in italics. Trying some other things below... * Bullet point?

List item?

'''Bold?'''

Orngarth
2 years ago

Reply


Yup, you're right that's a little ugly. I just turned on Markdown formatting for forum posts. How's this?

kday
2 years ago

Reply

What about adding the Markdown formatting to HW submissions too?

derosa
2 years ago

Reply

Well done, kday. Looking good. ;)

tj
2 years ago

Reply

Next forum update: editing?

tj
2 years ago

Reply

editing?

tj
2 years ago

Reply

HW submissions now use Markdown also. It made most of them look better, but one or two got a little borked. Editing of homework and posts is next.

kday
2 years ago

Reply

kday, I think you should style up the and tags.

tj
2 years ago

Reply

"em" and "strong" tags.

tj
2 years ago

Reply

Ya know...

em { font-style: italic } strong { font-weight: bold }

or whatever.

tj
2 years ago

Reply

Good call. I forgot that there's a reset CSS in there that wiped those out. Thanks.

kday
2 years ago

Reply

No problemo.

tj
2 years ago

Reply

kday, HW submissions look pretty good now. Thanks!

derosa
2 years ago

Reply

I think with Markdown/Pygments it's possible to change the language used by the syntax highlighting. It looks like it's highlighting according to Java or C++, but it might not be too hard to change it to Scheme.

PNuts
2 years ago

Reply

Although Markdown is being used for post text, the code sections use Google's code prettyfier. It has lisp highlighting built in, but I'm not sure if it's detecting it. I'll look into that.

kday
2 years ago

Reply

It doesn't seem like it is possible to edit posts on this forum. That would be a useful feature to have.

SomeIrishGuy
1 year ago

Reply

Post editing has been added now, along with replying directly to other comments. Thanks for the suggestion.

kday
1 year ago

Reply

* Markdown Cheatsheet:

Link:
[clickable text](http://www.example.com)

New Paragraph:
Hit enter twice

Main heading:
# Main Heading Text

Sub-heading:
## Sub-heading Text

List:
* item 1
* item 2
* item 3

Italics:
*italicized text*

Bold:
**bold text**

YouTube:
URL (http://www.youtube.com/watch?v=Ui4AYPcRkYE) turns into embed code

Full Markdown reference