This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Usage ruby doc-to-md.rb input.html > output.md | |
# Make sure to install reverse_markdown: gem install reverse_markdown | |
require 'reverse_markdown' | |
require 'cgi' | |
input = ARGF.read | |
BOLD_CLASSES = input.scan(/\.(\w+)\s*\{[^}]*font-weight:\s*700[^}]*\}/).flatten |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"&": "&", | |
">": ">", | |
"<": "<", | |
"\"": """, | |
"´": "´", | |
"¸": "¸", | |
"ˆ": "ˆ", | |
"¯": "¯", | |
"·": "·", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gem::Specification.new do |s| | |
s.name = 'email_validator' | |
s.version = '0.1.0' | |
s.platform = Gem::Platform::RUBY | |
s.author = 'Betterplace Developers' | |
s.email = '[email protected]' | |
s.summary = 'Simple email validation for rails' | |
s.description = "Stay simple but don't interfere with `mail`" | |
s.files = ['email_validator.rb'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bin/yarn add less | |
bin/yarn add less-loader |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bin/yarn add semantic-ui-less |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "semantic-ui-less/semantic.less" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@primaryColor : #bad304; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const path = require('path') | |
const customConfig = { | |
plugins: [], | |
resolve: { | |
alias: { | |
'../../theme.config': path.join(__dirname, '../../new-theme-name/theme.config') | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
████████╗██╗ ██╗███████╗███╗ ███╗███████╗███████╗ | |
╚══██╔══╝██║ ██║██╔════╝████╗ ████║██╔════╝██╔════╝ | |
██║ ███████║█████╗ ██╔████╔██║█████╗ ███████╗ | |
██║ ██╔══██║██╔══╝ ██║╚██╔╝██║██╔══╝ ╚════██║ | |
██║ ██║ ██║███████╗██║ ╚═╝ ██║███████╗███████║ | |
╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚══════╝╚══════╝ | |
*/ |
NewerOlder