45e4c66565
Remove slash commands from Markdown preview and display their outcome next to the text field. Introduce new "explanation" block to our slash commands DSL. Introduce optional "parse_params" block to slash commands DSL that allows to process a parameter before it is passed to "explanation" or "command" blocks. Pass path for previewing Markdown as "data" attribute instead of setting a variable on "window".
20 lines
718 B
Text
20 lines
718 B
Text
- page_title @project.name_with_namespace
|
|
- page_description @project.description unless page_description
|
|
- header_title project_title(@project) unless header_title
|
|
- nav "project"
|
|
|
|
- content_for :project_javascripts do
|
|
- project = @target_project || @project
|
|
- if current_user
|
|
:javascript
|
|
window.uploads_path = "#{namespace_project_uploads_path project.namespace,project}";
|
|
|
|
- content_for :header_content do
|
|
.js-dropdown-menu-projects
|
|
.dropdown-menu.dropdown-select.dropdown-menu-projects
|
|
= dropdown_title("Go to a project")
|
|
= dropdown_filter("Search your projects")
|
|
= dropdown_content
|
|
= dropdown_loading
|
|
|
|
= render template: "layouts/application"
|