Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jhermsmeier committed Feb 6, 2017
0 parents commit 71e76e8
Show file tree
Hide file tree
Showing 12 changed files with 4,585 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# See http://editorconfig.org
root = true

[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
charset = utf-8

[*.md,*.mkd,*.markdown]
trim_trailing_whitespace = false

[Makefile]
indent_style = tab
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.*
*.log
*.iatemplate
7 changes: 7 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.*
*.md
*.log
doc
test
example
benchmark
30 changes: 30 additions & 0 deletions Contents/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleIdentifier</key>
<string>jhermsmeier.template.math</string>
<key>CFBundleName</key>
<string>GitHub-MathML</string>
<key>CFBundleShortVersionString</key>
<string>1.0.0</string>
<key>CFBundleVersion</key>
<string>2</string>
<key>IATemplateDocumentFile</key>
<string>document</string>
<key>IATemplateFooterHeight</key>
<integer>90</integer>
<key>IATemplateHeaderHeight</key>
<integer>90</integer>
<key>IATemplateDescription</key>
<string>Document with support for Math</string>
<key>IATemplateAuthor</key>
<string>Jonas Hermsmeier</string>
<key>IATemplateAuthorURL</key>
<string>https://jhermsmeier.de</string>
</dict>
</plist>
24 changes: 24 additions & 0 deletions Contents/Resources/document.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" type="text/css" href="github.css">
<script type="text/javascript" src="texzilla.js"></script>
<script type="text/javascript" src="main.js"></script>
</head>
<body class="markdown-body" data-document>
&nbsp;
<h1>bka</h1>
<div class="math">
\[
Rot_{X_i}(⍺_{i,i+1}) = \left( \begin{array}{r}
1 &amp; 0 &amp; 0 &amp; 0 \\
0 &amp; cos(⍺_{i,i+1}) &amp; -sin(⍺_{i,i+1}) &amp; 0 \\
0 &amp; sin(⍺_{i,i+1}) &amp; cos(⍺_{i,i+1}) &amp; 0 \\
0 &amp; 0 &amp; 0 &amp; 1 \\
\end{array} \right)
\]
</div>
</body>
</html>
Loading

0 comments on commit 71e76e8

Please sign in to comment.