UPDATE: converted to GitHub repo. See https://github.com/borekb/mde-github-preview.
GitHub-style preview stylesheet for Markdown Edit.
The stylesheet is based on https://github.com/sindresorhus/github-markdown-css.
UPDATE: converted to GitHub repo. See https://github.com/borekb/mde-github-preview.
GitHub-style preview stylesheet for Markdown Edit.
The stylesheet is based on https://github.com/sindresorhus/github-markdown-css.
GitHub-style preview stylesheet for StackEdit.
The stylesheet is based on https://github.com/sindresorhus/github-markdown-css, see comments in github.css to learn what was updated.
github.css
file below<!-- přidat do elementu web-app, např. za MessageBrokerServlet --> | |
<servlet> | |
<servlet-name>RDSDispatchServlet</servlet-name> | |
<display-name>RDSDispatchServlet</display-name> | |
<servlet-class>flex.rds.server.servlet.FrontEndServlet</servlet-class> | |
<init-param> | |
<param-name>useAppserverSecurity</param-name> | |
<param-value>false</param-value> | |
</init-param> | |
<load-on-startup>10</load-on-startup> |
(function() { | |
var MyClass; | |
MyClass = (function() { | |
})(); | |
}).call(this); |
<?php | |
// třída, funkce, proměnná, prostě cokoliv, co poskytuje něco, | |
// co chce někdo jiný konzumovat | |
class Something { | |
function doWork() { | |
echo "some work..."; | |
} | |
} |