Я использую Blueprint CSS с Rails. Всякий раз, когда я использую a tag with a href value
, значение в href отображается на странице html.
Например
<a href="google.com">Google</a>
отображается как Google (google.com).
Это сгенерированный HTML-код
<!DOCTYPE html>
<html>
<head>
<title>Sample Screen</title>
<link href="/stylesheets/blueprint/screen.css?1285799042" media="screen" rel="stylesheet" type="text/css" />
<link href="/stylesheets/blueprint/print.css?1285799042" media="screen" rel="stylesheet" type="text/css" />
<script src="/javascripts/prototype.js?1288165422" type="text/javascript"></script>
<script src="/javascripts/effects.js?1288165422" type="text/javascript"></script>
<script src="/javascripts/dragdrop.js?1288165422" type="text/javascript"></script>
<script src="/javascripts/controls.js?1288165422" type="text/javascript"></script>
<script src="/javascripts/rails.js?1288165422" type="text/javascript"></script>
<script src="/javascripts/application.js?1290278728" type="text/javascript"></script>
<meta name="csrf-param" content="authenticity_token"/>
<meta name="csrf-token" content="LYQJCGVJThsPuRw/CLlxwYvDd4OKUICerFevQsmo0wc="/>
</head>
<body class="showgrid">
<div class="container">
<a href="google.com">Google</a>
</div>
</body>
</html>
Может кто-нибудь подскажите пожалуйста как это исправить