Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor bugfixes #1

Merged
merged 29 commits into from
Feb 11, 2019
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
1d0b516
Add dependencies for running tests
karimatthews Jan 25, 2019
5db078b
Prefer const to var
karimatthews Jan 25, 2019
dc595d3
Fis whitespace check on strikethrough
karimatthews Jan 25, 2019
5d1a334
Use 2 spaces for indenting
karimatthews Jan 25, 2019
a362c4d
Comment out citation test
karimatthews Jan 25, 2019
b54b65d
Standardize formatting
karimatthews Jan 25, 2019
72db65b
Use let rather than const where appropriate
karimatthews Jan 25, 2019
eb0574a
Fix markdown to jira strikethrough
karimatthews Jan 25, 2019
9c23abe
Do not transform intra-word underscores
karimatthews Jan 28, 2019
01dcad8
Do not transform intra-word asterisks
karimatthews Jan 28, 2019
666902e
Remove citation from example blob to fix integration test
karimatthews Jan 28, 2019
bfbb62f
Prevent intra-word formatting in the markdown to jira direction
karimatthews Jan 29, 2019
dfc0842
Handle multpile sections of bold and italic in a string
karimatthews Jan 30, 2019
6d5a683
Handle multiple codeblocks in the jira to markdown direction
karimatthews Jan 30, 2019
063881e
Fix tests to expect that formating should not be applied within codeb…
karimatthews Jan 30, 2019
b20731b
Handle edge cases for bold and italic formatting
karimatthews Jan 30, 2019
15bec6e
Use nested describe blocks to make tests clearer
karimatthews Jan 30, 2019
049bb24
Add an underscore in front of unused arguments
karimatthews Jan 31, 2019
3ddc49f
Get rid of Makefile
karimatthews Jan 31, 2019
d33e6c6
Add FAQ section to README
karimatthews Feb 1, 2019
9c6b3f0
Add unit test for md2jira multiple codeblocks
karimatthews Feb 1, 2019
f57a723
Remove unnecessary comment
karimatthews Feb 5, 2019
34c2402
Improve emphasis formatting from markdown to Jira
karimatthews Jan 31, 2019
e4dc581
Add unit tests for urls and emails
karimatthews Jan 31, 2019
45ae23f
Prevent further formatting being performed within codeblocks and nofo…
karimatthews Feb 1, 2019
bb7e535
Update package.json
karimatthews Feb 1, 2019
ba96528
Make J2M a 'Class' for readability
karimatthews Feb 11, 2019
69be386
Remove stale code
karimatthews Feb 11, 2019
52bee3c
Require a specific direction when transforming MD
karimatthews Feb 11, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update package.json
  • Loading branch information
karimatthews committed Feb 10, 2019
commit bb7e53598c9787a88cb550a426702bd19a6dea47
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,28 @@
"wiki",
"markdown"
],
"homepage": "http://github.com/kylefarris/J2M.git",
"homepage": "http://github.com/karimatthews/J2M.git",
"repository": {
"type": "git",
"url": "http://github.com/kylefarris/J2M.git"
"url": "http://github.com/karimatthews/J2M.git"
karimatthews marked this conversation as resolved.
Show resolved Hide resolved
},
"description": "JIRA to MarkDown text format converter.",
"main": "index.js",
"devDependencies": {
"chai": "^3.5.0"
"chai": "^3.5.0",
"mocha": "^5.2.0"
karimatthews marked this conversation as resolved.
Show resolved Hide resolved
},
"scripts": {
"test": "mocha --timeout 5000 --check-leaks --reporter spec test/*.js"
},
"author": "Fokke Zandbergen <mail@fokkezb.nl>",
"contributors": [
"Kyle Farris <kyle@chomponllc.com>",
"Eryk Warren <https://github.com/erykwarren>"
"Eryk Warren <https://github.com/erykwarren>",
"Kari Matthews <https://github.com/karimatthews>"
],
"license": "Apache-2.0",
"dependencies": {
"marked": "^0.3.5",
"mocha": "^5.2.0"
"marked": "^0.3.5"
}
}