Commit ca2814a0 by Piotr Mitros

Fix for minor github markdown formatting issue

Pardon extra commits; hard to see/debug without pushes to github
parent dcf92ecb
...@@ -45,16 +45,16 @@ read replicas of other module's databases. ...@@ -45,16 +45,16 @@ read replicas of other module's databases.
Note that all of these are optional. A hello world module could be as Note that all of these are optional. A hello world module could be as
simple as defining a single view: simple as defining a single view:
@view() @view()
def hello_world(): def hello_world():
return "<html>Hello world!</html>" return "<html>Hello world!</html>"
If you wanted the view to be per-user, you could include a user If you wanted the view to be per-user, you could include a user
parameter: parameter:
@view() @view()
def hello_world(user): def hello_world(user):
return "<html>Hello "+user+"</html>" return "<html>Hello "+user+"</html>"
The views and queries are automatically inspect for parameters, and The views and queries are automatically inspect for parameters, and
the system will do the right thing. If you would like to have a the system will do the right thing. If you would like to have a
...@@ -197,4 +197,4 @@ edX currently has many sources of data: ...@@ -197,4 +197,4 @@ edX currently has many sources of data:
7. Anecdotal interactions. 7. Anecdotal interactions.
We need to be able to aggregate these into useful information for We need to be able to aggregate these into useful information for
students, instructors, researchers, marketers, etc. students, instructors, researchers, marketers, etc.
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment