Search for: <(table|tr|td|p|div|span)[\S\s]*?\n?>
Replace with: <$1>
| #!/bin/sh | |
| while : | |
| do | |
| clear | |
| git log --graph --all --color --date=short -20 --pretty=format:"%C(yellow)%h%x20%C(white)%cd%C(green)%d%C(reset)%x20%s%x20%C(bold)(%an)%Creset" | | |
| cat - | |
| sleep 10 | |
| done |
| temp1 := ZnEasy get: 'address in here'. | |
| trello := NeoJSONReader fromString: temp1 entity. | |
| trelloLists := trello at:'lists'. | |
| trelloCards := trello at:'cards'. | |
| trelloLists do: [ :each|| listId | | |
| listId := each at:'id'. | |
| each at:'cards' put: ((trelloCards select:[:item|(( item at:'idList')=listId)])collect:[:item| item at:'name']). | |
| ]. |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>True Trello Printer</title> | |
| <link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet"> | |
| <style> | |
| body{margin:15%;} | |
| .panel-body{ |
| [merge] | |
| keepBackup = false | |
| tool = custom | |
| [mergetool "custom"] | |
| cmd = /Applications/p4merge.app/Contents/Resources/launchp4merge "$PWD/$BASE" "$PWD/$REMOTE" "$PWD/$LOCAL" "$PWD/$MERGED" | |
| keepTemporaries = false | |
| trustExitCode = false | |
| keepBackup = false |
| <!-- The container is a centered 960px --> | |
| <div class="container"> | |
| <!-- Give column value in word form (one, two..., twelve) --> | |
| <div class="sixteen columns"> | |
| <h1>Full Width Column</h1> | |
| </div> | |
| <!-- Sweet nested columns cleared with a clearfix class --> | |
| <div class="six columns clearfix"> |
| /* http://meyerweb.com/eric/tools/css/reset/ | |
| v2.0 | 20110126 | |
| License: none (public domain) | |
| */ | |
| html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { | |
| margin: 0; | |
| padding: 0; | |
| border: 0; | |
| font-size: 100%; |