<!DOCTYPE html>
<html>
<head ><link rel="stylesheet" href="https://assets.ubuntu.com/v1/vanilla-framework-version-4.15.0.min.css" \>
<title >Documentation: LIB/default.html</title>
</head>
<body ><div class="l-docs" ><div class="l-docs__header" ><header id="navigation" class="p-navigation is-dark" ><div class="l-docs__subgrid" ><div class="l-docs__sidebar" ><div class="p-navigation__banner" ><div class="p-navigation__tagged-logo" ><a class="p-navigation__link" href="/lambda-mountain/" ><div class="p-navigation__logo-tag" ><img class="p-navigation__logo-icon" src="https://github.com/andrew-johnson-4/lambda-mountain/blob/main/DOBYLOGO.png?raw=true" \>
</div>
<span class="p-navigation__logo-title" >Lambda Mountain</span></a>
</div>
</div>
</div>
<div class="l-docs__main" ><div class="p-navigation__row u-fixed-width" ><nav class="p-navigation__nav" ><ul class="p-navigation__items" ><li class="p-navigation__item" ><a class="p-navigation__link" href="/lambda-mountain/default.lm.html" >default.lm</a>
</li>
<li class="p-navigation__item" ><a class="p-navigation__link" href="/lambda-mountain/default.html.html" >default.html</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<section id="search-docs" class="p-strip is-bordered is-shallow l-docs__subgrid" >
<div class="l-docs__sidebar u-hide--medium u-hide--small" ><div class="u-fixed-width" ><h5 class="u-sv-2" >LM Documentation</h5>
</div>
</div>
<div class="l-docs__main" ><div class="row" ><form class="p-search-box u-no-margin-bottom" method="get" action="https://www.google.com/search" >
<input type="text" class="p-search-box__input" name="q" placeholder="Search documentation " required="" autocomplete="on" >
<input type="checkbox" name="sitesearch" value="https://andrew-johnson-4.github.io/lambda-mountain/" checked hidden >
<button type="reset" class="p-search-box__reset" name="close" >
<i class="p-icon--close" ></i></button>
<button type="submit" class="p-search-box__button" name="submitSearch" >
<i class="p-icon--search" ></i></button>
</form>
</div>
</div>
</section>
</div>
<div class="l-docs__title" id="main-content" ><div class="p-section--shallow" ><div class="row" ><div class="col-12" ><h1 >LIB/default.html Documentation</h1>
</div>
</div>
</div>
</div>
<main class="l-docs__main" >
<div class="row" ><div class="col-12" ><hr >
<h4 ><b>class</b> : (cls: String) -> HTMLAttribute</h4>
<p >A class attribute can be added to most html elements.</p><pre >
<code >
(div(
(class( 'p-data_s ))
(h2( 'Hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>action</b> : (cls: String) -> HTMLAttribute</h4>
<p >An action attribute can be added to most html elements.</p><pre >
<code >
(form(
(action( 'http://site_s ))
))
</code>
</pre>
<hr >
<h4 ><b>value</b> : (cls: String) -> HTMLAttribute</h4>
<p >A value attribute can be added to most html elements.</p><pre >
<code >
(input(
(value( 'http://site_s ))
))
</code>
</pre>
<hr >
<h4 ><b>checked</b> : () -> HTMLAttribute</h4>
<p >A checked attribute can be added to most html elements.</p><pre >
<code >
(form(
(checked( () ))
))
</code>
</pre>
<hr >
<h4 ><b>hidden</b> : () -> HTMLAttribute</h4>
<p >A hidden attribute can be added to most html elements.</p><pre >
<code >
(form(
(hidden( () ))
))
</code>
</pre>
<hr >
<h4 ><b>method</b> : (cls: String) -> HTMLAttribute</h4>
<p >A method attribute can be added to most html elements.</p><pre >
<code >
(form(
(method( 'get_s ))
))
</code>
</pre>
<hr >
<h4 ><b>name</b> : (cls: String) -> HTMLAttribute</h4>
<p >A name attribute can be added to most html elements.</p><pre >
<code >
(div(
(name( 'data_s ))
(h2( 'Hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>autocomplete</b> : (cls: String) -> HTMLAttribute</h4>
<p >An autocomplete attribute can be added to most html elements.</p><pre >
<code >
(input(
(type_( 'text_s ))
(autocomplete( 'default value_s ))
))
</code>
</pre>
<hr >
<h4 ><b>required</b> : (cls: String) -> HTMLAttribute</h4>
<p >A required attribute can be added to most html elements.</p><pre >
<code >
(input(
(type_( 'text_s ))
(required( 'yes_s ))
))
</code>
</pre>
<hr >
<h4 ><b>placeholder</b> : (cls: String) -> HTMLAttribute</h4>
<p >A placeholder attribute can be added to most html elements.</p><pre >
<code >
(input(
(type_( 'text_s ))
(placeholder( 'temporary value_s ))
))
</code>
</pre>
<hr >
<h4 ><b>type_</b> : (cls: String) -> HTMLAttribute</h4>
<p >A type attribute can be added to most html elements.</p><pre >
<code >
(input(
(type_( 'text_s ))
))
</code>
</pre>
<hr >
<h4 ><b>src</b> : (s: String) -> HTMLAttribute</h4>
<p >A src attribute can be added to most html elements.</p><pre >
<code >
(input(
(src( 'http://site_s ))
))
</code>
</pre>
<hr >
<h4 ><b>id</b> : (i: String) -> HTMLAttribute</h4>
<p >An id attribute can be added to most html elements.</p><pre >
<code >
(input(
(id( 'ident_s ))
))
</code>
</pre>
<hr >
<h4 ><b>rel</b> : (i: String) -> HTMLAttribute</h4>
<p >A rel attribute can be added to most html elements.</p><pre >
<code >
(input(
(rel( 'ident_s ))
))
</code>
</pre>
<hr >
<h4 ><b>href</b> : (a: String) -> HTMLAttribute</h4>
<p >An href attribute can be added to most html elements.</p><pre >
<code >
(input(
(rel( 'http://site_s ))
))
</code>
</pre>
<hr >
<h4 ><b>text</b> : (t: String) -> HTMLElement</h4>
<p >text is a typesafe plaintext element.</p><pre >
<code >
(text( 'hello_s ))
</code>
</pre>
<hr >
<h4 ><b>html</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >html is the document root .</p><pre >
<code >
(html(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>main</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >main is a semantic html element.</p><pre >
<code >
(main(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>head</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >head is a semantic html element.</p><pre >
<code >
(head(
(title( 'The page title_s ))
))
</code>
</pre>
<hr >
<h4 ><b>title</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >title is a semantic html element.</p><pre >
<code >
(title(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>body</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >body is where visual html elements go.</p><pre >
<code >
(body(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>h1</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >h1 is a semantic html element.</p><pre >
<code >
(h1(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>h2</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >h2 is a semantic html element.</p><pre >
<code >
(h2(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>h3</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >h3 is a semantic html element.</p><pre >
<code >
(h3(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>h4</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >h4 is a semantic html element.</p><pre >
<code >
(h4(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>h5</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >h5 is a semantic html element.</p><pre >
<code >
(h5(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>h6</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >h6 is a semantic html element.</p><pre >
<code >
(h6(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>div</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >div is a semantic html element.</p><pre >
<code >
(div(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>header</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >header is a semantic html element.</p><pre >
<code >
(header(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>nav</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >nav is a semantic html element.</p><pre >
<code >
(nav(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>ul</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >ul is a semantic html element.</p><pre >
<code >
(ul(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>ol</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >ol is a semantic html element.</p><pre >
<code >
(ol(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>li</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >li is a semantic html element.</p><pre >
<code >
(li(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>a</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >a is a semantic html element.</p><pre >
<code >
(a(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>span</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >span is a semantic html element.</p><pre >
<code >
(span(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>i</b> : (attrs: HTMLAttribute...)(f1: HTMLElement) -> HTMLElement</h4>
<p >i is a semantic html element.</p><pre >
<code >
(i(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>p</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >p is a semantic html element.</p><pre >
<code >
(p(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>img</b> : (attrs: HTMLAttribute...) -> HTMLElement</h4>
<p >img is a semantic html element.</p><pre >
<code >
(img(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>link</b> : (attrs: HTMLAttribute...) -> HTMLElement</h4>
<p >link is a semantic html element.</p><pre >
<code >
(link(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>section</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >section is a semantic html element.</p><pre >
<code >
(section(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>form</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >form is a semantic html element.</p><pre >
<code >
(form(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>input</b> : (attrs: HTMLAttribute...) -> HTMLElement</h4>
<p >input is a semantic html element.</p><pre >
<code >
(input(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>button</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >button is a semantic html element.</p><pre >
<code >
(button(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>pre</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >pre is a semantic html element.</p><pre >
<code >
(pre(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>code</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >code is a semantic html element.</p><pre >
<code >
(code(
(text( 'hello_s ))
))
</code>
</pre>
<hr >
<h4 ><b>hr</b> : (attrs: HTMLAttribute...)(es: HTMLElement...) -> HTMLElement</h4>
<p >hr is a semantic html element.</p><pre >
<code >
(hr(
(class( 't_s ))
))
</code>
</pre>
</div>
</div>
</main>
</div>
</body>
</html>