See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
$(function() { | |
jQuery.fn.exists = function(){return this.length>0;} | |
// Dynamic Colspan | |
if($('[colspan="auto"]').exists()) | |
{ | |
$.each($('[colspan="auto"]'), function( index, value ) { | |
var table = $(this).closest('table'); // Get Table | |
var siblings = $(this).closest('tr').find('th:visible, td:visible').not('[colspan="auto"]').length; // Count colspan siblings |
# Amazing .htaccess | |
# Requires Following Modules Enabled | |
# mod_rewrite | |
# mod_deflate | |
# mod_headers | |
# mod_mime | |
# mod_expires | |
# rewrite rules |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
Here is a short guide that will help you setup your environment to create signed commits
or signed tags
with Git locally. This has been extensively tested on Windows with Git and the Github Desktop application: I use it every day for my professional development projects.
I you face any issue, feel free to leave a comment below.
<!-- This file is mainly pseudo code with parts copied from a working project to illustrate how tiptap-aligntext.plugin.js can be implemented into your project --> | |
<template> | |
<div> | |
<editor-menu-bar :editor="editor" v-slot="{ commands }"> | |
<div class="menubar"> | |
<i class="fas fa-align-left" :class="{ 'is-active': editor.activeMarkAttrs.aligntext.align === 'left' }" @click="commands.aligntext({ align: 'left' })"></i> | |
<i class="fas fa-align-center" :class="{ 'is-active': editor.activeMarkAttrs.aligntext.align === 'center' }" @click="commands.aligntext({ align: 'center' })"></i> | |
<i class="fas fa-align-right" :class="{ 'is-active': editor.activeMarkAttrs.aligntext.align === 'right' }" @click="commands.aligntext({ align: 'right' })"></i> | |
<i class="fas fa-align-justify" :class="{ 'is-active': editor.activeMarkAttrs.aligntext.align === 'justify' }" @click="commands.aligntext({ align: 'justify' })"></i> |