Tagged Questions

7
votes
3answers
666 views

Visual Studio Language Service with C# intellisense

Last year I wrote a Language Service for Visual Studio which added syntax highlighting for NHaml files: http://github.com/snappycode/hamleditor. To clarify, NHaml is a html template language that can …
3
votes
1answer
272 views

Should I Learn NHaml?

Should I learn NHaml? What does it provide me over a classic ASP.NET MVC view? What are the pros and cons? Are you using it via the MVC Contrib project? I have been seeing more and more about it. …
1
vote
3answers
29 views

Strongly typed views in NHaml?

I have a strongly typed view and want to use it in an NHaml page. With the WebForms engine I would describe the ViewData type in the <%@ Page%> directive or in the codebehind file. How would …
1
vote
1answer
61 views

NHAML Directives

Does anyone know how to use directives (ex. @ Import) with NHAML?
1
vote
3answers
92 views

NHAML Radio Button Syntax

Does anyone know the correct syntax for a selected radio button in NHAML? This is my current NHAML code: %input{type="radio", name="Relocation", value="Yes"} The help would be greatly appreciated. …
1
vote
2answers
354 views

Does NHaml have a content_for ability for layouts?

I am currently starting a project utilizing ASP.NET MVC and would like to use NHaml as my view engine as I love Haml from Rails/Merb. The main issue I face is the laying out of my pages. In Webforms, …
0
votes
2answers
16 views

Create an incremental placeholder in NHaml

What I want to reach is a way to add a script and style placeholder in my master. They will include my initial site.css and jquery.js files. Each haml page or partial can then add their own required …
0
votes
1answer
20 views

Why are my script tags rendered outside my body tag?

This is my nhaml code ^ var title="" !!! XML !!! Strict %html{xmlns="http://www.w3.org/1999/xhtml"} %head %title Nhaml Master #{title} _styles %body .page %h1 = …
0
votes
1answer
9 views

add output of %link directive to variable?

In my master a partial _styles is loaded. In this _styles there is a ^var styles = "" Now in all my views or partials I can say var styles = styles+"another style" Normally a style is defined as …
0
votes
1answer
77 views

ASP.NET MVC - NHaml issue on web.config file

Hello There, I'm trying to implement NHaml views on my application, and it's all working well. But strangely I'm getting some warnings on web.config files when publishing the application. My nhaml …
0
votes
2answers
54 views

NHaml - still active?

I accidentally stumbled across NHaml and really like what I have seen of it. However, checking the blogs of the authors and Google group reveals that there doesn't seem to be much happening. Is it …
0
votes
2answers
97 views

NHaml configuration problem: Model is not found

Hello. I'm having a little problem with my NHaml config: <configSections> <section name="nhaml" type="NHaml.Configuration.NHamlConfigurationSection, NHaml"/> </configSections> …