Skip to content

Commit

Permalink
more styling; keep convert in file name
Browse files Browse the repository at this point in the history
  • Loading branch information
mhkeller committed Sep 12, 2017
1 parent 8db667b commit 78f4ca3
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 52 deletions.
10 changes: 5 additions & 5 deletions docs/assets/split.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@
padding-left: .5em;
width: 100%;
}
#introduction h1{
font-size: 2em;
}
#project-name{
/*color: #416381;*/
font-family: "Helvetica Neue",Helvetica,sans-serif;
margin: 0 0 5px 0;
/*background-color: #d5dde2;*/
font-size: .875rem;
color: #416381;
}
section{
max-width: 800px;
}
#introduction h1 a{
font-size: 2em;
color: #416381;
}
1 change: 0 additions & 1 deletion docs/assets/style.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.documentation {
font-family: Helvetica, sans-serif;
color: #666;
line-height: 1.5;
}

Expand Down
10 changes: 5 additions & 5 deletions docs/default_theme/assets/split.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@
padding-left: .5em;
width: 100%;
}
#introduction h1{
font-size: 2em;
}
#project-name{
/*color: #416381;*/
font-family: "Helvetica Neue",Helvetica,sans-serif;
margin: 0 0 5px 0;
/*background-color: #d5dde2;*/
font-size: .875rem;
color: #416381;
}
section{
max-width: 800px;
}
#introduction h1 a{
font-size: 2em;
color: #416381;
}
1 change: 0 additions & 1 deletion docs/default_theme/assets/style.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.documentation {
font-family: Helvetica, sans-serif;
color: #666;
line-height: 1.5;
}

Expand Down
10 changes: 5 additions & 5 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,9 @@ <h3 id="project-name" class='mb0 no-anchor'>indian-ocean 2.0.2</h3>


<li class="function"><a
href='#dbftodata'
href='#convertdbftodata'
class="">
.dbfToData
.convertDbfToData

</a>

Expand Down Expand Up @@ -4089,8 +4089,8 @@ <h2 id='converters' class='mt0 mb0'>

<div class='clearfix'>

<h3 class='fl m0' id='dbftodata'>
dbfToData
<h3 class='fl m0' id='convertdbftodata'>
convertDbfToData
</h3>


Expand All @@ -4100,7 +4100,7 @@ <h3 class='fl m0' id='dbftodata'>
<p>Reads in a dbf file with <code>.readDbf</code> and write to file using <code>.writeData</code>. A convenience function for converting DBFs to more useable formats. Formerly known as <code>writeDbfToData</code> and is aliased for legacy support.</p>


<div class='pre p1 fill-light mt0'>dbfToData(inPath: any, outPath: any, opts_: any, cb: any, inFileName: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">String</a>, outFileName: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">String</a>, options: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object">Object</a>?, callback: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function">Function</a>)</div>
<div class='pre p1 fill-light mt0'>convertDbfToData(inPath: any, outPath: any, opts_: any, cb: any, inFileName: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">String</a>, outFileName: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">String</a>, options: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object">Object</a>?, callback: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function">Function</a>)</div>



Expand Down
2 changes: 1 addition & 1 deletion documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ toc:
- readYaml
- readYamlSync
- name: 'converters'
- dbfToData
- convertDbfToData
- name: 'helpers'
- deepExtend
- discernFileFormatter
Expand Down
2 changes: 1 addition & 1 deletion index.node.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// converters
export {default as convertDbfToData} from './src/converters/dbfToData'
export {default as convertDbfToData} from './src/converters/convertDbfToData'
// formatters
export {default as formatters} from './src/formatters/index'
export {default as formatCsv} from './src/formatters/csv'
Expand Down
33 changes: 0 additions & 33 deletions src/converters/dbfToData.js

This file was deleted.

0 comments on commit 78f4ca3

Please sign in to comment.