This repository has been archived by the owner on Sep 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 340
Added Frequently Asked Questions Page #202
Closed
+1,238
−0
Closed
Changes from all commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
9d80dad
Added FAQ
bea69ad
Updated FAQ
596d92c
Cleanup
a532931
Corrections
b782659
Updated FAQ based on Diggsey's suggestions
e94751d
Addressing feedback
9646f3f
More corrections
756a5d2
Added answer for Rust versioning
2aad0da
Add another answer
a3c9d13
Mobile style improvements
5f458fb
Removed copyright notice
5c1409b
Removed list of companies using Rust
5a66ed8
Some additional cleanup and review
dbd997b
Organized sections
57f72c5
Simplified CSS
d718d7c
Updating answers
57f62ac
Addressed latest round of feedback
fabd2ba
Take a pass over the whole FAQ
brson 8b3265f
Fix alignment of operator table in FAQ
brson dc0774d
Merge pull request #1 from brson/faq
AndrewBrinker 0ef5d23
Fixed typos
9da71ec
Updated answer about higher-kinded type support
20c365f
Clarified answer on Ord/PartialOrd and Eq/PartialEq split
095d45c
Updated borrow checker answer
7721973
Typo fixes
435b1de
Addressed charlotteis' suggestions
601a473
Small fixes
ef9715a
Changed to 4-space indent in code samples
123c803
Updated based on tshepang's latest feedback
1c3a038
More corrections based on tshepang's feedback
3425bdd
Integrated latest feedback from tshepang
c374cbb
First pass with new feedback
7ba7f3d
New draft of the higher-kinded types answer
e7bab64
Partial addition of API doc links
1594ab3
Fixed based on feedback from pnkfelix
ffb11a7
Small correction
ea304ed
Updated based on latest feedback
8e490bb
Updated ord/eq answers
6705771
Updated borrow checker answer
6b75c04
Updated lifetime elision answer
c4e41f0
Fixed typo
898dd0f
Added links to API docs
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
name: The Rust Programming Language | ||
markdown: redcarpet | ||
redcarpet: | ||
extensions: ["tables"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<link href='https://fonts.googleapis.com/css?family=Source+Serif+Pro:400,600' rel='stylesheet' type='text/css'> | ||
|
||
<div class="faq"> | ||
{{ content }} | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we not use a custom layout for this? Is the only customization here the copyright disclaimer? If so I feel ok, for now at least, assuming that the copyright declaration on the www repo itself is sufficient.
This is an interesting choice though, and we should consider whether something like it should be done for the entire site.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The custom layout is actually for an interesting reason. Markdown doesn't allow having Markdown embedded in HTML tags, and the
<div class="faq">
is used for some custom styling (which may be undesirable, and definitely needs a bit of fine-tuning for mobile). I prefer to write in Markdown, although the file could of course be transitioned to entirely HTML if the extra layout is undesirable.